Skip to content
This repository was archived by the owner on Dec 22, 2022. It is now read-only.
This repository was archived by the owner on Dec 22, 2022. It is now read-only.

Array items with multiply keys are not loaded properly #5

@atorkhov

Description

@atorkhov

---
list:
  - elem1:
      elem1_1: data1
    elem2: data2

list will become Array object with additional elem2 property. I don't know how properly format it in JSON, but something like this:

{
  list: {
    0: { elem1: {elem1_1: "data1" } },
    elem2: "data2"
  }
}

I was expecting:

{
  list: [
    { elem1: { elem1_1: "data1" },
      elem2: "data2" }
  ]
}

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions