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.9k
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
6.1k
SDDC2370 - VMware Integrated OpenStack - VMWorld 2014
lvandeyar
0
6.8k
Other Decks in Technology
See All in Technology
KubeCon + CloudNativeCon Japan 2025 Recap Opening & Choose Your Own Adventureシリーズまとめ
mmmatsuda
0
280
マーケットプレイス版Oracle WebCenter Content For OCI
oracle4engineer
PRO
3
960
SEQUENCE object comparison - db tech showcase 2025 LT2
nori_shinoda
0
150
MUITにおける開発プロセスモダナイズの取り組みと開発生産性可視化の取り組みについて / Modernize the Development Process and Visualize Development Productivity at MUIT
muit
1
17k
Flutter向けPDFビューア、pdfrxのpdfium WASM対応について
espresso3389
0
130
高速なプロダクト開発を実現、創業期から掲げるエンタープライズアーキテクチャ
kawauso
2
9.4k
IPA&AWSダブル全冠が明かす、人生を変えた勉強法のすべて
iwamot
PRO
2
150
赤煉瓦倉庫勉強会「Databricksを選んだ理由と、絶賛真っ只中のデータ基盤移行体験記」
ivry_presentationmaterials
2
370
開発生産性を組織全体の「生産性」へ! 部門間連携の壁を越える実践的ステップ
sudo5in5k
2
7.2k
FOSS4G 2025 KANSAI QGISで点群データをいろいろしてみた
kou_kita
0
400
データグループにおけるフロントエンド開発
lycorptech_jp
PRO
1
110
How Do I Contact HP Printer Support? [Full 2025 Guide for U.S. Businesses]
harrry1211
0
120
Featured
See All Featured
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
60k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
126
53k
Art, The Web, and Tiny UX
lynnandtonic
299
21k
Embracing the Ebb and Flow
colly
86
4.7k
Raft: Consensus for Rubyists
vanstee
140
7k
Writing Fast Ruby
sferik
628
62k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
6
300
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
130
19k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.9k
Why You Should Never Use an ORM
jnunemaker
PRO
58
9.4k
Faster Mobile Websites
deanohume
307
31k
The Cult of Friendly URLs
andyhume
79
6.5k
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/