GET /api/weathercondition/?format=api
HTTP 200 OK
Allow: GET, HEAD
Content-Type: application/json
Vary: Accept

{
    "count": 8,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "condition": "Snow",
            "condition_en": "Snow",
            "condition_de": "Schnee"
        },
        {
            "id": 2,
            "condition": "Ice",
            "condition_en": "Ice",
            "condition_de": "Eis"
        },
        {
            "id": 3,
            "condition": "Rain",
            "condition_en": "Rain",
            "condition_de": "Regen"
        },
        {
            "id": 4,
            "condition": "Wetness",
            "condition_en": "Wetness",
            "condition_de": "Nässe"
        },
        {
            "id": 5,
            "condition": "Fog",
            "condition_en": "Fog",
            "condition_de": "Nebel"
        },
        {
            "id": 6,
            "condition": "Sunshine",
            "condition_en": "Sunshine",
            "condition_de": "Sonne"
        },
        {
            "id": 7,
            "condition": "Dryness",
            "condition_en": "Dryness",
            "condition_de": "Trockenheit"
        },
        {
            "id": 8,
            "condition": "Storm",
            "condition_en": "Storm",
            "condition_de": "Sturm"
        }
    ]
}