1
{
2
    "duckConfig": {
3
        "name""Quack Overflow",
4
        "hasGlasses"true,
5
        "floats"null
6
    },
7
    "pondStats": {
8
        "temperature"22.5,
9
        "isFrozen"false,
10
        "coordinates": [
11
            59.9139,
12
            10.7522
13
        ]
14
    },
15
    "dailyActivities": [
16
        "Swim",
17
        "Debug fountain",
18
        "Line up"
19
    ],
20
    "features": {}
21
}

1
export interface Root {
2
    duckConfig: DuckConfig;
3
    pondStats: PondStats;
4
    dailyActivities: string[];
5
    features: Features;
6
}
7
8
export interface DuckConfig {
9
    name: string;
10
    hasGlasses: boolean;
11
    floats: any;
12
}
13
14
export interface PondStats {
15
    temperature: number;
16
    isFrozen: boolean;
17
    coordinates: number[];
18
}
19
20
export interface Features {
21
}
22