Timothy Martens
Timothy Martens

Reputation: 688

What type of data interchange format is this?

What type of data interchange format is this? It is used in ways similar to json or xml.

Note that is is incomplete but in the end each square bracket is neatly closed.

[
    [
        [
            "a",
            "b",
        ]
    ],
    [
        [
            "xxxxx",
                [
                    "df",
                    "fg"
                ],
                [
                    [
                        "gh",

Upvotes: 0

Views: 182

Answers (3)

bigblind
bigblind

Reputation: 12867

This is json as far as I can see, just a lot of nested arrays.

Upvotes: 1

Explosion Pills
Explosion Pills

Reputation: 191779

This is just JSON. Take a look at the second image.

Upvotes: 2

Bennor McCarthy
Bennor McCarthy

Reputation: 11675

That looks like JSON. Could be hard to work with though because it doesn't look like each array element is consistent.

Upvotes: 2

Related Questions