summaryrefslogtreecommitdiff
path: root/data/personaldb.json
blob: 75faec575b9a6d23e07f9f4e24e586d48cf0bd8b (plain) (blame)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[
  {
    "username": "john_doe",
    "passwordHash": 12345,
    "fullName": "John Doe",
    "courses": [
      1,
      2
    ],
    "rounds": [
      {
        "course": 2,
        "dateTime": [
          2025,
          10,
          7,
          9,
          4,
          6,
          798620300
        ],
        "startingHole": {
          "number": 3,
          "par": 5
        },
        "plays": [
          {
            "holeNumber": 3,
            "swings": [
              {
                "distance": 1000,
                "clubUsed": {
                  "manufacture": "Generic",
                  "nickname": "Tyler",
                  "clubType": "DRIVER"
                }
              },
              {
                "distance": 250,
                "clubUsed": {
                  "manufacture": "Generic",
                  "nickname": "Tyler",
                  "clubType": "DRIVER"
                }
              }
            ],
            "distance": 1250,
            "swingCount": 2
          },
          {
            "holeNumber": 4,
            "swings": [
              {
                "distance": 125,
                "clubUsed": {
                  "manufacture": "Generic",
                  "nickname": "Dman",
                  "clubType": "DRIVER"
                }
              }
            ],
            "distance": 125,
            "swingCount": 1
          }
        ],
        "currentHoleIndex": 4,
        "totalDistance": 1375.0,
        "currentHole": {
          "number": 5,
          "par": 3
        },
        "totalSwings": 3
      }
    ],
    "clubs": [
      {
        "manufacture": "TaylorMade",
        "nickname": "Old Faithful",
        "clubType": "DRIVER"
      },
      {
        "manufacture": "Callaway",
        "nickname": "Lucky Seven",
        "clubType": "IRON"
      }
    ]
  }
]