Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
JSON Crash Course
Search
lvandeyar
March 03, 2015
Technology
1
5.8k
JSON Crash Course
A talk I gave to my co-workers about JSON on March 3rd, 2015.
lvandeyar
March 03, 2015
Tweet
Share
More Decks by lvandeyar
See All by lvandeyar
Ansible Training - Part 1 - Introduction
lvandeyar
0
6k
SDDC2370 - VMware Integrated OpenStack - VMWorld 2014
lvandeyar
0
6.8k
Other Decks in Technology
See All in Technology
アーキテクチャわからん、の話
shirayanagiryuji
0
150
Enhancing SRE Using AI
yoshiiryo1
1
280
HCP TerraformとAzure:イオンスマートテクノロジーのインフラ革新 / HCP Terraform and Azure AEON Smart Technology's Infrastructure Innovation
aeonpeople
3
990
サーバーレスで楽しよう!お気軽に始められる3つのポイント / Have fun with Serverless!
_kensh
2
230
Postman Vaultを使った秘密情報の安全な管理
nagix
3
140
Creative Pair
kawaguti
PRO
1
130
DevSecOps入門:Security Development Lifecycleによる開発プロセスのセキュリティ強化
yuriemori
0
240
RevOpsへ至る道 データ活用による事業革新への挑戦 / path-to-revops
pei0804
3
800
Grafanaのvariables機能について
tiina
0
180
プロダクト観点で考えるデータ基盤の育成戦略 / Growth Strategy of Data Analytics Platforms from a Product Perspective
yamamotoyuta
0
220
private spaceについてあれこれ調べてみた
operando
1
170
Skip Skip Run Run Run ♫
temoki
0
360
Featured
See All Featured
What's in a price? How to price your products and services
michaelherold
244
12k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
Why Our Code Smells
bkeepers
PRO
335
57k
Making the Leap to Tech Lead
cromwellryan
133
9.1k
Thoughts on Productivity
jonyablonski
68
4.4k
Building Adaptive Systems
keathley
39
2.4k
The Invisible Side of Design
smashingmag
299
50k
Music & Morning Musume
bryan
46
6.3k
Product Roadmaps are Hard
iamctodd
PRO
50
11k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
How to train your dragon (web standard)
notwaldorf
89
5.8k
Practical Orchestrator
shlominoach
186
10k
Transcript
JSON Crash Course LAURENCE VANDEYAR, SENIOR SYSTEMS ENGINEER MARCH 3RD,
2015
What is JSON? JSON stands for JavaScript Object Notation
JSON is language independent * JSON is a lightweight data-interchange format
JSON Syntax JavaScript object notation syntax: Data is in
name/value pairs "firstName":“Laurence" Data is separated by commas “firstName":“Laurence", "lastName":“Vandeyar" Curly braces hold objects {"firstName":“Laurence", "lastName":“Vandeyar"}
JSON Syntax (cont.) Square brackets hold arrays [
{"firstName":“Laurence", "lastName":“Vandeyar"}, {"firstName":“Michael", "lastName":“Pereira"}, {"firstName":“Kenneth", "lastName":“Tamsberg"} ] Complete JSON Object Array {"employees":[ {"firstName":“Laurence", "lastName":“Vandeyar"}, {"firstName":“Michael", "lastName":“Pereira"}, {"firstName":“Kenneth", "lastName":“Tamsberg"} ]}
JSON Values JSON values can be: A number (integer
or floating point) A string (in double quotes) A Boolean (true or false) An array (in square brackets) An object (in curly braces) null
Example
Links http://json.org/ http://jsonformatter.curiousconcept.com/