What is the data format? This seems like some kind of reduced pseudo-XML / JSON for me

Sorry, this might be a stupid question, but I have no idea how to do this on google ... I have a result from the CLI tool, and I was wondering what the format is called. I would not want to write a parser myself if this is a common format, and I am sure that it is.

It looks like this:

statusList {
  status {
    int  time="1260878400"
    value {
      char value="197773F100"
      char type="RGF"
    } #value
  } #status

  status {
    int  time="1260899700"
    value {
      char value="347663E100"
      char type="RGF"

    } #value
  } #status
} #statusList

Thank!

+5
source share
2 answers

Sounds like JSon to me. This is not exactly the same, but it seems to have most of the same designs.

0
source

It looks like a JSON variant.

-3
source

All Articles