1{
2    "type":"Feature",
3    "id":"Poly",
4    "properties": {
5        "text":"This is a Feature with a Polygon"
6    },
7    "geometry": {
8        "type": "Polygon",
9        "coordinates": [
10            [
11                [17.13, 51.11],
12                [30.54, 50.42],
13                [26.70, 58.36],
14                [17.13, 51.11]
15            ],
16            [
17                [23.46, 54.36],
18                [20.52, 51.91],
19                [28.25, 51.50],
20                [26.80, 54.36],
21                [23.46, 54.36]
22            ]
23        ]
24    }
25}
26