{
  "id": "v01-canonical-json",
  "chapter": "02",
  "title": "canonical JSON: sorted keys, no whitespace, arrays in order, unicode preserved",
  "check": "canonicalize",
  "input": {
    "value": {
      "z": 1,
      "a": [
        3,
        1,
        "x",
        null,
        true
      ],
      "m": {
        "z": 3,
        "a": 4
      },
      "name": "Zoë Ærø",
      "emoji": "✦"
    }
  },
  "expect": {
    "verdict": "pass",
    "canonical": "{\"a\":[3,1,\"x\",null,true],\"emoji\":\"✦\",\"m\":{\"a\":4,\"z\":3},\"name\":\"Zoë Ærø\",\"z\":1}"
  }
}
