summaryrefslogtreecommitdiff
path: root/spec/fixtures/lib/gitlab/import_export/with_duplicates.json
blob: ed2e1821dd3f549dcb482dcb88023921459f4742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
  "simple": 42,
  "duped_hash_with_id": {
    "id": 0,
    "v1": 1
  },
  "duped_hash_no_id": {
    "v1": 1
  },
  "duped_array": [
    "v2"
  ],
  "array": [
    {
      "duped_hash_with_id": {
        "id": 0,
        "v1": 1
      }
    },
    {
      "duped_array": [
        "v2"
      ]
    },
    {
      "duped_hash_no_id": {
        "v1": 1
      }
    }
  ],
  "nested": {
    "duped_hash_with_id": {
      "id": 0,
      "v1": 1
    },
    "duped_array": [
      "v2"
    ],
    "array": [
      "don't touch"
    ]
  }
}