{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    102.0,
                    0.5
                ]
            },
            "properties": {
                "propA": "valueA"
            }
        },
        {
            "type": "Feature",
            "geometry": {
                "type": "LineString",
                "coordinates": [
                    [
                        102.0,
                        0.5
                    ],
                    [
                        103.0,
                        1.0
                    ],
                    [
                        104.0,
                        0.0
                    ],
                    [
                        105.0,
                        1.0
                    ]
                ]
            },
            "properties": {
                "propB": "valueB",
                "propB2": 0.0
            }
        },
        {
            "type": "Feature",
            "geometry": {
                "type": "MultiPolygon",
                "coordinates": [
                    [
                        [
                            [
                                180.0,
                                40.0
                            ],
                            [
                                180.0,
                                50.0
                            ],
                            [
                                170.0,
                                50.0
                            ],
                            [
                                170.0,
                                40.0
                            ],
                            [
                                180.0,
                                40.0
                            ]
                        ]
                    ],
                    [
                        [
                            [
                                -170.0,
                                40.0
                            ],
                            [
                                -170.0,
                                50.0
                            ],
                            [
                                -180.0,
                                50.0
                            ],
                            [
                                -180.0,
                                40.0
                            ],
                            [
                                -170.0,
                                40.0
                            ]
                        ]
                    ]
                ]
            }
        },
        {
            "type": "Feature",
            "geometry": {
                "type": "Polygon",
                "coordinates": [
                    [
                        [
                            100.0,
                            0.0
                        ],
                        [
                            101.0,
                            0.0
                        ],
                        [
                            101.0,
                            1.0
                        ],
                        [
                            100.0,
                            1.0
                        ],
                        [
                            100.0,
                            0.0
                        ]
                    ]
                ]
            },
            "properties": {
                "propD": "valueD",
                "propD2": {
                    "this": "that"
                },
                "propD3": true,
                "propD4": null
            }
        }
    ]
}
