Search code examples
javascriptjsonnotation

Weird JSON like notation. What language is this?


I just stumbled across this weird JSON like notation that's being returned by a certain server at work. It has a lot in common with JSON, but I can't parse it using javascripts JSON.parse() function. The notation is as follows:

[
  {
    :key value,
    :someRandomKey "This is a string value",
    :someOtherKey true
  }
  {
    ...
  }
]

Notice the lack of quotes, the strange key notation after the double dots, the lack of comma's between objects. Does anyone know what language / notation this could be?


Solution

  • This notation is found in Clojure see link: clojure