Ref: https://learn.cantrill.io/courses/2022818/lectures/45642050
JSON Characteristics
- 💡 JSON = “JavaScript Object Notation”
- It's the same syntax used to define objects in the JavaScript programming language
- 🔧 Lightweight data-interchange format
- 💡 Very common in applications, e.g. API responses
- ‼️ Unlike YAML, doesn't care about indentation!!
- Data enclosed in braces or brackets
- JSON Object syntax:
{ “key”:”value”, "key":"value" ... }
- 💡 Conceptually the same as a YAML dictionary
- Also supports strings, numbers, booleans, nulls
- JSON Objects & Arrays:
- JSON Objects & Lists
- JSON Nested Objects:
- Example: CloudFormation Template in JSON