Skip to content
GradedJestRisk edited this page Nov 22, 2020 · 4 revisions

General

List:

  • subset of JavaScript class-free object instantiation
  • filename ends with .json
  • validate JSON
Browse (JSONPath)

Samples

Person

{
  "firstName": "John",
  "lastName": "Smith",
  "age": 27,
  "address": {
    "streetAddress": "21 2nd Street",
    "city": "New York",
    "state": "NY",
    "postalCode": "10021-3100"
  },
  "phoneNumbers": [
    {
      "type": "home",
      "number": "212 555-1234"
    },
    {
      "type": "office",
      "number": "646 555-4567"
    },
    {
      "type": "mobile",
      "number": "123 456-7890"
    }
  ],
  "children": [],
  "spouse": null
}

Clone this wiki locally