Json online validator

Online Json validator (json syntax/lint checker)

Input json for lint check

(char count: )


Errors in Json (if any)

Sample valid json strings

  1. Simple json string

    "hello"
    
  2. Simple json array

    ["hello1", "hello2"]
    
  3. Simple json associative array

    {
    "key1":"hello1",
    "key2":"hello2"
    }
    
  4. Simple json mixed array

    [
    {"key1":"hello1", "key2":"hello2"},
    "foo"
    ]