{
    "openapi": "3.0.0",
    "info": {
        "title": "Feiertagskalender API",
        "description": "This API determines on which days of the year an official public holiday or school holidays take place for all geographical units of a country.  The required parameters are `api_key` and `geoId`. The `year` parameter is optional - if it is not specified, the current year is automatically used. In addition, the output can be configured using further parameters. The parameters are passed as query parameters in the URL. Alternatively, authorisation can also take place in the header.<br><br>**CSV note:** The CSV output contains a flat table structure in which nested JSON\/XML elements are not mapped. Some data fields are not available in CSV format.",
        "version": "0.9.0"
    },
    "servers": [
        {
            "url": "https:\/\/feiertagskalender.ch\/api"
        }
    ],
    "paths": {
        "\/Data\/Country\/index.php": {
            "get": {
                "tags": [
                    "Read out annual data for several locations"
                ],
                "summary": "Get public holidays and school holidays for a whole year for all available entries of a country, based on an ISO country code (iso). (query parameter)",
                "description": "**Data\/Country**<br>This API determines on which days of the year an official public holiday or school holidays take place for all geographical units of a country.  The required parameters are `api_key` and `geoId`. The `year` parameter is optional - if it is not specified, the current year is automatically used. In addition, the output can be configured using further parameters. The parameters are passed as query parameters in the URL. Alternatively, authorisation can also take place in the header.",
                "parameters": [
                    {
                        "name": "api_key",
                        "in": "query",
                        "required": true,
                        "description": "Your API Key",
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "iso",
                        "in": "query",
                        "required": true,
                        "description": "ISO country code, 2 digits",
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "year",
                        "in": "query",
                        "required": false,
                        "description": "Year (2000 - 2050)",
                        "schema": {
                            "type": "integer",
                            "minimum": 2000,
                            "maximum": 2050
                        }
                    },
                    {
                        "name": "class",
                        "in": "query",
                        "required": false,
                        "description": "Class type for filtering. Available values:\r\n- `0` = school holidays only\r\n- `3` = 0 + public holidays recognised by law\r\n- `4` = 0 + 3 + public and non-public holidays (religious, cultural) (default)\r\n- `5` = 0 + 3 + 4 + event days (e.g. Valentine's Day, Mother's Day, Advent)",
                        "schema": {
                            "type": "integer",
                            "enum": [
                                0,
                                3,
                                4,
                                5
                            ],
                            "default": 4
                        }
                    },
                    {
                        "name": "all_entities",
                        "in": "query",
                        "required": false,
                        "description": " Scope of the geographical data:\r\n- `0` = only levels country and ISO-3166-2 (= standard)\r\n- `1` = all recorded units",
                        "schema": {
                            "type": "integer",
                            "enum": [
                                0,
                                1
                            ],
                            "default": 0
                        }
                    },
                    {
                        "name": "charset",
                        "in": "query",
                        "required": false,
                        "description": "The desired coding of the response",
                        "schema": {
                            "type": "string",
                            "enum": [
                                "utf-8",
                                "iso-8859-1"
                            ],
                            "default": "utf-8"
                        }
                    },
                    {
                        "name": "format",
                        "in": "query",
                        "required": false,
                        "description": "The desired output format",
                        "schema": {
                            "type": "string",
                            "enum": [
                                "json",
                                "xml",
                                "csv"
                            ],
                            "default": "json"
                        }
                    },
                    {
                        "name": "date_format",
                        "in": "query",
                        "required": false,
                        "description": "The desired date format for the response. Default: `Y-m-d` (e.g., 2025-12-31)\r\n",
                        "schema": {
                            "type": "string",
                            "enum": [
                                "Y-m-d",
                                "d.m.Y",
                                "dmY",
                                "Ymd",
                                "d.n.y",
                                "j.n.y"
                            ],
                            "default": "Y-m-d"
                        }
                    },
                    {
                        "name": "hl",
                        "in": "query",
                        "required": false,
                        "description": "Desired language of the output",
                        "schema": {
                            "type": "string",
                            "enum": [
                                "de",
                                "en",
                                "fr",
                                "it"
                            ],
                            "default": "de"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "Successful response with the query results. The CSV output contains a flat table structure in which nested JSON\/XML elements are not mapped. Please note that some data fields are not available in CSV format. \n\n**JSON-Request:**\n`https:\/\/feiertagskalender.ch\/api\/Data\/Country\/index.php?api_key=YOUR_API_KEY&iso=FR&year=2022`\n\n**XML-Request:**\n`https:\/\/feiertagskalender.ch\/api\/Data\/Country\/index.php?api_key=YOUR_API_KEY&iso=FR&year=2022&format=XML`\n\n**CSV-Request:**\n`https:\/\/feiertagskalender.ch\/api\/Data\/Country\/index.php?api_key=YOUR_API_KEY&iso=FR&year=2022&format=CSV`\n\n",
                        "content": {
                            "application\/json": {
                                "example": {
                                    "interface": "fcal API 2.02",
                                    "source": {
                                        "href": "https:\/\/feiertagskalender.ch",
                                        "description": "feiertagskalender.ch"
                                    },
                                    "copyright": {
                                        "href": "https:\/\/psc.ch",
                                        "description": "psc Peter Schuetz Informatik-Dienstleistungen, CH Arch"
                                    },
                                    "apiName": "Data\/Country",
                                    "apiStatus": {
                                        "description": "active"
                                    },
                                    "date": "2025-02-27",
                                    "request": {
                                        "iso": "FR",
                                        "year": 2022,
                                        "class": "4",
                                        "charset": "utf-8",
                                        "format": "json",
                                        "date_format": "Y-m-d",
                                        "all_entities": 0,
                                        "hl": "de"
                                    },
                                    "results": {
                                        "status": {
                                            "description": "ok"
                                        },
                                        "locations": [
                                            {
                                                "description": "Auvergne-Rhône-Alpes",
                                                "type": "Region",
                                                "geoId": "3099",
                                                "parentId": "3079",
                                                "iso": "FR",
                                                "iso-3166-2": "FR-ARA",
                                                "note": "",
                                                "events": [
                                                    {
                                                        "description": "Neujahr",
                                                        "id": "1",
                                                        "dateStart": "2022-01-01",
                                                        "dateEnd": "2022-01-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Ostern",
                                                        "id": "18",
                                                        "dateStart": "2022-04-17",
                                                        "dateEnd": "2022-04-17",
                                                        "class": "4",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Ostermontag",
                                                        "id": "19",
                                                        "dateStart": "2022-04-18",
                                                        "dateEnd": "2022-04-18",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Tag der Arbeit",
                                                        "id": "22",
                                                        "dateStart": "2022-05-01",
                                                        "dateEnd": "2022-05-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Tag des Sieges 1945",
                                                        "id": "97",
                                                        "dateStart": "2022-05-08",
                                                        "dateEnd": "2022-05-08",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Christi Himmelfahrt",
                                                        "id": "31",
                                                        "dateStart": "2022-05-26",
                                                        "dateEnd": "2022-05-26",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Pfingsten",
                                                        "id": "30",
                                                        "dateStart": "2022-06-05",
                                                        "dateEnd": "2022-06-05",
                                                        "class": "4",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Pfingstmontag",
                                                        "id": "35",
                                                        "dateStart": "2022-06-06",
                                                        "dateEnd": "2022-06-06",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Nationalfeiertag Frankreich",
                                                        "id": "96",
                                                        "dateStart": "2022-07-14",
                                                        "dateEnd": "2022-07-14",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Mariä Himmelfahrt",
                                                        "id": "42",
                                                        "dateStart": "2022-08-15",
                                                        "dateEnd": "2022-08-15",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Allerheiligen",
                                                        "id": "47",
                                                        "dateStart": "2022-11-01",
                                                        "dateEnd": "2022-11-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Gedenktag 1918",
                                                        "id": "98",
                                                        "dateStart": "2022-11-11",
                                                        "dateEnd": "2022-11-11",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachten",
                                                        "id": "23",
                                                        "dateStart": "2022-12-25",
                                                        "dateEnd": "2022-12-25",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachtsferien",
                                                        "id": "812135",
                                                        "dateStart": "2021-12-19",
                                                        "dateEnd": "2022-01-02",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Winterferien",
                                                        "id": "812136",
                                                        "dateStart": "2022-02-13",
                                                        "dateEnd": "2022-02-27",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Frühlingsferien",
                                                        "id": "812137",
                                                        "dateStart": "2022-04-17",
                                                        "dateEnd": "2022-05-01",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Auffahrtsferien",
                                                        "id": "812138",
                                                        "dateStart": "2022-05-26",
                                                        "dateEnd": "2022-05-26",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Sommerferien",
                                                        "id": "812139",
                                                        "dateStart": "2022-07-07",
                                                        "dateEnd": "2022-08-31",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Herbstferien",
                                                        "id": "826980",
                                                        "dateStart": "2022-10-22",
                                                        "dateEnd": "2022-11-06",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachtsferien",
                                                        "id": "826981",
                                                        "dateStart": "2022-12-17",
                                                        "dateEnd": "2023-01-02",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    }
                                                ]
                                            },
                                            {
                                                "description": "Bourgogne-Franche-Comté",
                                                "type": "Region",
                                                "geoId": "3101",
                                                "parentId": "3079",
                                                "iso": "FR",
                                                "iso-3166-2": "FR-BFC",
                                                "note": "",
                                                "events": [
                                                    {
                                                        "description": "Neujahr",
                                                        "id": "1",
                                                        "dateStart": "2022-01-01",
                                                        "dateEnd": "2022-01-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Ostern",
                                                        "id": "18",
                                                        "dateStart": "2022-04-17",
                                                        "dateEnd": "2022-04-17",
                                                        "class": "4",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Ostermontag",
                                                        "id": "19",
                                                        "dateStart": "2022-04-18",
                                                        "dateEnd": "2022-04-18",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Tag der Arbeit",
                                                        "id": "22",
                                                        "dateStart": "2022-05-01",
                                                        "dateEnd": "2022-05-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Tag des Sieges 1945",
                                                        "id": "97",
                                                        "dateStart": "2022-05-08",
                                                        "dateEnd": "2022-05-08",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Christi Himmelfahrt",
                                                        "id": "31",
                                                        "dateStart": "2022-05-26",
                                                        "dateEnd": "2022-05-26",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Pfingsten",
                                                        "id": "30",
                                                        "dateStart": "2022-06-05",
                                                        "dateEnd": "2022-06-05",
                                                        "class": "4",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Pfingstmontag",
                                                        "id": "35",
                                                        "dateStart": "2022-06-06",
                                                        "dateEnd": "2022-06-06",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Nationalfeiertag Frankreich",
                                                        "id": "96",
                                                        "dateStart": "2022-07-14",
                                                        "dateEnd": "2022-07-14",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Mariä Himmelfahrt",
                                                        "id": "42",
                                                        "dateStart": "2022-08-15",
                                                        "dateEnd": "2022-08-15",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Allerheiligen",
                                                        "id": "47",
                                                        "dateStart": "2022-11-01",
                                                        "dateEnd": "2022-11-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Gedenktag 1918",
                                                        "id": "98",
                                                        "dateStart": "2022-11-11",
                                                        "dateEnd": "2022-11-11",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachten",
                                                        "id": "23",
                                                        "dateStart": "2022-12-25",
                                                        "dateEnd": "2022-12-25",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachtsferien",
                                                        "id": "812232",
                                                        "dateStart": "2021-12-19",
                                                        "dateEnd": "2022-01-02",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Winterferien",
                                                        "id": "812233",
                                                        "dateStart": "2022-02-13",
                                                        "dateEnd": "2022-02-27",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Frühlingsferien",
                                                        "id": "812234",
                                                        "dateStart": "2022-04-17",
                                                        "dateEnd": "2022-05-01",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Auffahrtsferien",
                                                        "id": "812236",
                                                        "dateStart": "2022-05-26",
                                                        "dateEnd": "2022-05-26",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Sommerferien",
                                                        "id": "812235",
                                                        "dateStart": "2022-07-07",
                                                        "dateEnd": "2022-08-31",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Herbstferien",
                                                        "id": "827049",
                                                        "dateStart": "2022-10-22",
                                                        "dateEnd": "2022-11-06",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachtsferien",
                                                        "id": "827050",
                                                        "dateStart": "2022-12-17",
                                                        "dateEnd": "2023-01-02",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            },
                            "application\/xml": {
                                "schema": {
                                    "type": "object",
                                    "xml": {
                                        "name": "fcal_api"
                                    }
                                },
                                "example": "<fcal_api>\r\n\t<interface>fcal API 2.02<\/interface>\r\n\t<source>\r\n\t\t<href>https:\/\/feiertagskalender.ch<\/href>\r\n\t\t<description>feiertagskalender.ch<\/description>\r\n\t<\/source>\r\n\t<copyright>\r\n\t\t<href>https:\/\/psc.ch<\/href>\r\n\t\t<description>psc Peter Schuetz Informatik-Dienstleistungen, CH Bern<\/description>\r\n\t<\/copyright>\r\n\t<apiStatus>\r\n\t\t<description>active<\/description>\r\n\t<\/apiStatus>\r\n\t<apiName>Data\/Country<\/apiName>\r\n\t<date>2025-02-27<\/date>\r\n\t<request>\r\n\t\t<iso>FR<\/iso>\r\n\t\t<year>2022<\/year>\r\n\t\t<class>4<\/class>\r\n\t\t<charset>utf-8<\/charset>\r\n\t\t<format>xml<\/format>\r\n\t\t<date_format>Y-m-d<\/date_format>\r\n\t\t<all_entities>0<\/all_entities>\r\n\t\t<hl>de<\/hl>\r\n\t<\/request>\r\n\t<results>\r\n\t\t<status>\r\n\t\t\t<description>ok<\/description>\r\n\t\t<\/status>\r\n\t\t<locations>\r\n\t\t\t<location>\r\n\t\t\t\t<description>Auvergne-Rhône-Alpes<\/description>\r\n\t\t\t\t<type>Region<\/type>\r\n\t\t\t\t<geoId>3099<\/geoId>\r\n\t\t\t\t<parentId>3079<\/parentId>\r\n\t\t\t\t<iso>FR<\/iso>\r\n\t\t\t\t<iso-3166-2>FR-ARA<\/iso-3166-2>\r\n\t\t\t\t<note><\/note>\r\n\t\t\t\t<events>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Neujahr<\/description>\r\n\t\t\t\t\t\t<id>1<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-01-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-01-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Ostern<\/description>\r\n\t\t\t\t\t\t<id>18<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-04-17<\/dateEnd>\r\n\t\t\t\t\t\t<class>4<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Ostermontag<\/description>\r\n\t\t\t\t\t\t<id>19<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-18<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-04-18<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Tag der Arbeit<\/description>\r\n\t\t\t\t\t\t<id>22<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Tag des Sieges 1945<\/description>\r\n\t\t\t\t\t\t<id>97<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-08<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-08<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Christi Himmelfahrt<\/description>\r\n\t\t\t\t\t\t<id>31<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-26<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-26<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Pfingsten<\/description>\r\n\t\t\t\t\t\t<id>30<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-06-05<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-06-05<\/dateEnd>\r\n\t\t\t\t\t\t<class>4<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Pfingstmontag<\/description>\r\n\t\t\t\t\t\t<id>35<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-06-06<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-06-06<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Nationalfeiertag Frankreich<\/description>\r\n\t\t\t\t\t\t<id>96<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-07-14<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-07-14<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Mariä Himmelfahrt<\/description>\r\n\t\t\t\t\t\t<id>42<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-08-15<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-08-15<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Allerheiligen<\/description>\r\n\t\t\t\t\t\t<id>47<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-11-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Gedenktag 1918<\/description>\r\n\t\t\t\t\t\t<id>98<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-11-11<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-11<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachten<\/description>\r\n\t\t\t\t\t\t<id>23<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-12-25<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-12-25<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachtsferien<\/description>\r\n\t\t\t\t\t\t<id>812135<\/id>\r\n\t\t\t\t\t\t<dateStart>2021-12-19<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-01-02<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Winterferien<\/description>\r\n\t\t\t\t\t\t<id>812136<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-02-13<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-02-27<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Frühlingsferien<\/description>\r\n\t\t\t\t\t\t<id>812137<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Auffahrtsferien<\/description>\r\n\t\t\t\t\t\t<id>812138<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-26<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-26<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Sommerferien<\/description>\r\n\t\t\t\t\t\t<id>812139<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-07-07<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-08-31<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Herbstferien<\/description>\r\n\t\t\t\t\t\t<id>826980<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-10-22<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-06<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachtsferien<\/description>\r\n\t\t\t\t\t\t<id>826981<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-12-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2023-01-02<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t<\/events>\r\n\t\t\t<\/location>\r\n\t\t\t<location>\r\n\t\t\t\t<description>Bourgogne-Franche-Comté<\/description>\r\n\t\t\t\t<type>Region<\/type>\r\n\t\t\t\t<geoId>3101<\/geoId>\r\n\t\t\t\t<parentId>3079<\/parentId>\r\n\t\t\t\t<iso>FR<\/iso>\r\n\t\t\t\t<iso-3166-2>FR-BFC<\/iso-3166-2>\r\n\t\t\t\t<note><\/note>\r\n\t\t\t\t<events>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Neujahr<\/description>\r\n\t\t\t\t\t\t<id>1<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-01-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-01-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Ostern<\/description>\r\n\t\t\t\t\t\t<id>18<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-04-17<\/dateEnd>\r\n\t\t\t\t\t\t<class>4<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Ostermontag<\/description>\r\n\t\t\t\t\t\t<id>19<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-18<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-04-18<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Tag der Arbeit<\/description>\r\n\t\t\t\t\t\t<id>22<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Tag des Sieges 1945<\/description>\r\n\t\t\t\t\t\t<id>97<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-08<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-08<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Christi Himmelfahrt<\/description>\r\n\t\t\t\t\t\t<id>31<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-26<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-26<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Pfingsten<\/description>\r\n\t\t\t\t\t\t<id>30<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-06-05<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-06-05<\/dateEnd>\r\n\t\t\t\t\t\t<class>4<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Pfingstmontag<\/description>\r\n\t\t\t\t\t\t<id>35<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-06-06<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-06-06<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Nationalfeiertag Frankreich<\/description>\r\n\t\t\t\t\t\t<id>96<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-07-14<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-07-14<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Mariä Himmelfahrt<\/description>\r\n\t\t\t\t\t\t<id>42<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-08-15<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-08-15<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Allerheiligen<\/description>\r\n\t\t\t\t\t\t<id>47<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-11-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Gedenktag 1918<\/description>\r\n\t\t\t\t\t\t<id>98<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-11-11<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-11<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachten<\/description>\r\n\t\t\t\t\t\t<id>23<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-12-25<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-12-25<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachtsferien<\/description>\r\n\t\t\t\t\t\t<id>812232<\/id>\r\n\t\t\t\t\t\t<dateStart>2021-12-19<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-01-02<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Winterferien<\/description>\r\n\t\t\t\t\t\t<id>812233<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-02-13<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-02-27<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Frühlingsferien<\/description>\r\n\t\t\t\t\t\t<id>812234<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Auffahrtsferien<\/description>\r\n\t\t\t\t\t\t<id>812236<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-26<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-26<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Sommerferien<\/description>\r\n\t\t\t\t\t\t<id>812235<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-07-07<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-08-31<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Herbstferien<\/description>\r\n\t\t\t\t\t\t<id>827049<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-10-22<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-06<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachtsferien<\/description>\r\n\t\t\t\t\t\t<id>827050<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-12-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2023-01-02<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t<\/events>\r\n\t\t\t<\/location>\r\n\t\t<\/locations>\r\n\t<\/results>\r\n<\/fcal_api>\r\n"
                            },
                            "application\/csv": {
                                "example": "\"location\";\"geoId\";\"iso\";\"iso_3166_2\";\"description\";\"id\";\"dateStart\";\"dateEnd\";\"class\";\"percent\";\"prov\";\"note\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Neujahr\";\"1\";\"2022-01-01\";\"2022-01-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Ostern\";\"18\";\"2022-04-17\";\"2022-04-17\";\"4\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Ostermontag\";\"19\";\"2022-04-18\";\"2022-04-18\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Tag der Arbeit\";\"22\";\"2022-05-01\";\"2022-05-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Tag des Sieges 1945\";\"97\";\"2022-05-08\";\"2022-05-08\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Christi Himmelfahrt\";\"31\";\"2022-05-26\";\"2022-05-26\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Pfingsten\";\"30\";\"2022-06-05\";\"2022-06-05\";\"4\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Pfingstmontag\";\"35\";\"2022-06-06\";\"2022-06-06\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Nationalfeiertag Frankreich\";\"96\";\"2022-07-14\";\"2022-07-14\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Mariä Himmelfahrt\";\"42\";\"2022-08-15\";\"2022-08-15\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Allerheiligen\";\"47\";\"2022-11-01\";\"2022-11-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Gedenktag 1918\";\"98\";\"2022-11-11\";\"2022-11-11\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Weihnachten\";\"23\";\"2022-12-25\";\"2022-12-25\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Weihnachtsferien\";\"812135\";\"2021-12-19\";\"2022-01-02\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Winterferien\";\"812136\";\"2022-02-13\";\"2022-02-27\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Frühlingsferien\";\"812137\";\"2022-04-17\";\"2022-05-01\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Auffahrtsferien\";\"812138\";\"2022-05-26\";\"2022-05-26\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Sommerferien\";\"812139\";\"2022-07-07\";\"2022-08-31\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Herbstferien\";\"826980\";\"2022-10-22\";\"2022-11-06\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Weihnachtsferien\";\"826981\";\"2022-12-17\";\"2023-01-02\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Neujahr\";\"1\";\"2022-01-01\";\"2022-01-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Ostern\";\"18\";\"2022-04-17\";\"2022-04-17\";\"4\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Ostermontag\";\"19\";\"2022-04-18\";\"2022-04-18\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Tag der Arbeit\";\"22\";\"2022-05-01\";\"2022-05-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Tag des Sieges 1945\";\"97\";\"2022-05-08\";\"2022-05-08\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Christi Himmelfahrt\";\"31\";\"2022-05-26\";\"2022-05-26\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Pfingsten\";\"30\";\"2022-06-05\";\"2022-06-05\";\"4\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Pfingstmontag\";\"35\";\"2022-06-06\";\"2022-06-06\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Nationalfeiertag Frankreich\";\"96\";\"2022-07-14\";\"2022-07-14\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Mariä Himmelfahrt\";\"42\";\"2022-08-15\";\"2022-08-15\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Allerheiligen\";\"47\";\"2022-11-01\";\"2022-11-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Gedenktag 1918\";\"98\";\"2022-11-11\";\"2022-11-11\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Weihnachten\";\"23\";\"2022-12-25\";\"2022-12-25\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Weihnachtsferien\";\"812232\";\"2021-12-19\";\"2022-01-02\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Winterferien\";\"812233\";\"2022-02-13\";\"2022-02-27\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Frühlingsferien\";\"812234\";\"2022-04-17\";\"2022-05-01\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Auffahrtsferien\";\"812236\";\"2022-05-26\";\"2022-05-26\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Sommerferien\";\"812235\";\"2022-07-07\";\"2022-08-31\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Herbstferien\";\"827049\";\"2022-10-22\";\"2022-11-06\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Weihnachtsferien\";\"827050\";\"2022-12-17\";\"2023-01-02\";\"0\";\"100\";\"0\";\"\""
                            }
                        }
                    },
                    "400": {
                        "description": "Incorrect request - missing or invalid parameters.",
                        "content": {
                            "application\/json": {
                                "examples": {
                                    "not subscribed": {
                                        "summary": "You have not subscribed to the desired data.",
                                        "value": {
                                            "results": {
                                                "status": {
                                                    "description": "not subscribed"
                                                }
                                            }
                                        }
                                    },
                                    "unknown_location": {
                                        "summary": "The requested ISO country code is not known. <br>Please check the parameter <strong>ISO<\/strong>",
                                        "value": {
                                            "results": {
                                                "status": {
                                                    "description": "unknown location"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Access denied - Invalid API key.",
                        "content": {
                            "application\/json": {
                                "examples": {
                                    "invalid_key": {
                                        "summary": "Invalid API key.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid key"
                                            }
                                        }
                                    },
                                    "invalid_usage": {
                                        "summary": "The use of this API is not enabled for this user.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid usage"
                                            }
                                        }
                                    },
                                    "invalid_referer": {
                                        "summary": "Invalid access. Links from web pages (front-ends) are not allowed.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid referer"
                                            }
                                        }
                                    },
                                    "inactive": {
                                        "summary": "The API has not yet been activated for use.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "inactive"
                                            }
                                        }
                                    },
                                    "expired": {
                                        "summary": "The period of use according to the contract has expired.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "expired"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500": {
                        "description": "Interner Serverfehler – ein unerwarteter Fehler ist aufgetreten.",
                        "content": {
                            "application\/json": {
                                "example": {
                                    "error": {
                                        "code": 500,
                                        "message": "Interner Serverfehler. Bitte versuchen Sie es später erneut."
                                    }
                                }
                            }
                        }
                    }
                }
            },
            "post": {
                "tags": [
                    "Read out annual data for several locations"
                ],
                "summary": "Get public holidays and school holidays for a whole year for all available entries of a country, based on an ISO country code (iso). ((JSON request)",
                "description": "**Data\/Country**<br>This API determines on which days of the year an official public holiday or school holidays take place for all geographical units of a country.  The required parameters are `api_key` and `geoId`. The `year` parameter is optional - if it is not specified, the current year is automatically used. The output can also be configured using additional parameters. The parameters are transferred as JSON in the request body. Alternatively, authorisation can also take place in the header. ",
                "requestBody": {
                    "required": true,
                    "content": {
                        "application\/json": {
                            "schema": {
                                "type": "object",
                                "properties": {
                                    "api_key": {
                                        "type": "string"
                                    },
                                    "iso": {
                                        "type": "string"
                                    },
                                    "year": {
                                        "type": "integer",
                                        "minimum": 2000,
                                        "maximum": 2050
                                    },
                                    "class": {
                                        "type": "integer",
                                        "enum": [
                                            0,
                                            3,
                                            4,
                                            5
                                        ],
                                        "default": 4
                                    },
                                    "all_entities": {
                                        "type": "integer",
                                        "enum": [
                                            0,
                                            1
                                        ],
                                        "default": 0
                                    },
                                    "charset": {
                                        "type": "string",
                                        "enum": [
                                            "utf-8",
                                            "iso-8859-1"
                                        ],
                                        "default": "utf-8"
                                    },
                                    "format": {
                                        "type": "string",
                                        "enum": [
                                            "json",
                                            "xml",
                                            "csv"
                                        ],
                                        "default": "json"
                                    },
                                    "date_format": {
                                        "type": "string",
                                        "enum": [
                                            "Y-m-d",
                                            "d.m.Y",
                                            "dmY",
                                            "Ymd",
                                            "d.n.y",
                                            "j.n.y"
                                        ],
                                        "default": "Y-m-d"
                                    },
                                    "hl": {
                                        "type": "string",
                                        "enum": [
                                            "de",
                                            "fr",
                                            "it",
                                            "en"
                                        ],
                                        "default": "de"
                                    }
                                },
                                "required": [
                                    "api_key",
                                    "iso"
                                ]
                            },
                            "example": {
                                "api_key": "YOUR_API_KEY",
                                "iso": "FR",
                                "year": 2022,
                                "class": 4,
                                "all_entities": 0,
                                "charset": "utf-8",
                                "format": "json",
                                "date_format": "Y-m-d",
                                "hl": "de"
                            }
                        }
                    }
                },
                "responses": {
                    "200": {
                        "description": "Successful response with the query results. The CSV output contains a flat table structure in which nested JSON\/XML elements are not mapped. Please note that some data fields are not available in CSV format.",
                        "content": {
                            "application\/json": {
                                "example": {
                                    "interface": "fcal API 2.02",
                                    "source": {
                                        "href": "https:\/\/feiertagskalender.ch",
                                        "description": "feiertagskalender.ch"
                                    },
                                    "copyright": {
                                        "href": "https:\/\/psc.ch",
                                        "description": "psc Peter Schuetz Informatik-Dienstleistungen, CH Arch"
                                    },
                                    "apiName": "Data\/Country",
                                    "apiStatus": {
                                        "description": "active"
                                    },
                                    "date": "2025-02-27",
                                    "request": {
                                        "iso": "FR",
                                        "year": 2022,
                                        "class": "4",
                                        "charset": "utf-8",
                                        "format": "json",
                                        "date_format": "Y-m-d",
                                        "all_entities": 0,
                                        "hl": "de"
                                    },
                                    "results": {
                                        "status": {
                                            "description": "ok"
                                        },
                                        "locations": [
                                            {
                                                "description": "Auvergne-Rhône-Alpes",
                                                "type": "Region",
                                                "geoId": "3099",
                                                "parentId": "3079",
                                                "iso": "FR",
                                                "iso-3166-2": "FR-ARA",
                                                "note": "",
                                                "events": [
                                                    {
                                                        "description": "Neujahr",
                                                        "id": "1",
                                                        "dateStart": "2022-01-01",
                                                        "dateEnd": "2022-01-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Ostern",
                                                        "id": "18",
                                                        "dateStart": "2022-04-17",
                                                        "dateEnd": "2022-04-17",
                                                        "class": "4",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Ostermontag",
                                                        "id": "19",
                                                        "dateStart": "2022-04-18",
                                                        "dateEnd": "2022-04-18",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Tag der Arbeit",
                                                        "id": "22",
                                                        "dateStart": "2022-05-01",
                                                        "dateEnd": "2022-05-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Tag des Sieges 1945",
                                                        "id": "97",
                                                        "dateStart": "2022-05-08",
                                                        "dateEnd": "2022-05-08",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Christi Himmelfahrt",
                                                        "id": "31",
                                                        "dateStart": "2022-05-26",
                                                        "dateEnd": "2022-05-26",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Pfingsten",
                                                        "id": "30",
                                                        "dateStart": "2022-06-05",
                                                        "dateEnd": "2022-06-05",
                                                        "class": "4",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Pfingstmontag",
                                                        "id": "35",
                                                        "dateStart": "2022-06-06",
                                                        "dateEnd": "2022-06-06",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Nationalfeiertag Frankreich",
                                                        "id": "96",
                                                        "dateStart": "2022-07-14",
                                                        "dateEnd": "2022-07-14",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Mariä Himmelfahrt",
                                                        "id": "42",
                                                        "dateStart": "2022-08-15",
                                                        "dateEnd": "2022-08-15",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Allerheiligen",
                                                        "id": "47",
                                                        "dateStart": "2022-11-01",
                                                        "dateEnd": "2022-11-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Gedenktag 1918",
                                                        "id": "98",
                                                        "dateStart": "2022-11-11",
                                                        "dateEnd": "2022-11-11",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachten",
                                                        "id": "23",
                                                        "dateStart": "2022-12-25",
                                                        "dateEnd": "2022-12-25",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachtsferien",
                                                        "id": "812135",
                                                        "dateStart": "2021-12-19",
                                                        "dateEnd": "2022-01-02",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Winterferien",
                                                        "id": "812136",
                                                        "dateStart": "2022-02-13",
                                                        "dateEnd": "2022-02-27",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Frühlingsferien",
                                                        "id": "812137",
                                                        "dateStart": "2022-04-17",
                                                        "dateEnd": "2022-05-01",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Auffahrtsferien",
                                                        "id": "812138",
                                                        "dateStart": "2022-05-26",
                                                        "dateEnd": "2022-05-26",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Sommerferien",
                                                        "id": "812139",
                                                        "dateStart": "2022-07-07",
                                                        "dateEnd": "2022-08-31",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Herbstferien",
                                                        "id": "826980",
                                                        "dateStart": "2022-10-22",
                                                        "dateEnd": "2022-11-06",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachtsferien",
                                                        "id": "826981",
                                                        "dateStart": "2022-12-17",
                                                        "dateEnd": "2023-01-02",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    }
                                                ]
                                            },
                                            {
                                                "description": "Bourgogne-Franche-Comté",
                                                "type": "Region",
                                                "geoId": "3101",
                                                "parentId": "3079",
                                                "iso": "FR",
                                                "iso-3166-2": "FR-BFC",
                                                "note": "",
                                                "events": [
                                                    {
                                                        "description": "Neujahr",
                                                        "id": "1",
                                                        "dateStart": "2022-01-01",
                                                        "dateEnd": "2022-01-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Ostern",
                                                        "id": "18",
                                                        "dateStart": "2022-04-17",
                                                        "dateEnd": "2022-04-17",
                                                        "class": "4",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Ostermontag",
                                                        "id": "19",
                                                        "dateStart": "2022-04-18",
                                                        "dateEnd": "2022-04-18",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Tag der Arbeit",
                                                        "id": "22",
                                                        "dateStart": "2022-05-01",
                                                        "dateEnd": "2022-05-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Tag des Sieges 1945",
                                                        "id": "97",
                                                        "dateStart": "2022-05-08",
                                                        "dateEnd": "2022-05-08",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Christi Himmelfahrt",
                                                        "id": "31",
                                                        "dateStart": "2022-05-26",
                                                        "dateEnd": "2022-05-26",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Pfingsten",
                                                        "id": "30",
                                                        "dateStart": "2022-06-05",
                                                        "dateEnd": "2022-06-05",
                                                        "class": "4",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Pfingstmontag",
                                                        "id": "35",
                                                        "dateStart": "2022-06-06",
                                                        "dateEnd": "2022-06-06",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Nationalfeiertag Frankreich",
                                                        "id": "96",
                                                        "dateStart": "2022-07-14",
                                                        "dateEnd": "2022-07-14",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Mariä Himmelfahrt",
                                                        "id": "42",
                                                        "dateStart": "2022-08-15",
                                                        "dateEnd": "2022-08-15",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Allerheiligen",
                                                        "id": "47",
                                                        "dateStart": "2022-11-01",
                                                        "dateEnd": "2022-11-01",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Gedenktag 1918",
                                                        "id": "98",
                                                        "dateStart": "2022-11-11",
                                                        "dateEnd": "2022-11-11",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachten",
                                                        "id": "23",
                                                        "dateStart": "2022-12-25",
                                                        "dateEnd": "2022-12-25",
                                                        "class": "1",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachtsferien",
                                                        "id": "812232",
                                                        "dateStart": "2021-12-19",
                                                        "dateEnd": "2022-01-02",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Winterferien",
                                                        "id": "812233",
                                                        "dateStart": "2022-02-13",
                                                        "dateEnd": "2022-02-27",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Frühlingsferien",
                                                        "id": "812234",
                                                        "dateStart": "2022-04-17",
                                                        "dateEnd": "2022-05-01",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Auffahrtsferien",
                                                        "id": "812236",
                                                        "dateStart": "2022-05-26",
                                                        "dateEnd": "2022-05-26",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Sommerferien",
                                                        "id": "812235",
                                                        "dateStart": "2022-07-07",
                                                        "dateEnd": "2022-08-31",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Herbstferien",
                                                        "id": "827049",
                                                        "dateStart": "2022-10-22",
                                                        "dateEnd": "2022-11-06",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    },
                                                    {
                                                        "description": "Weihnachtsferien",
                                                        "id": "827050",
                                                        "dateStart": "2022-12-17",
                                                        "dateEnd": "2023-01-02",
                                                        "class": "0",
                                                        "percent": "100",
                                                        "prov": "0",
                                                        "note": null
                                                    }
                                                ]
                                            }
                                        ]
                                    }
                                }
                            },
                            "application\/xml": {
                                "schema": {
                                    "type": "object",
                                    "xml": {
                                        "name": "fcal_api"
                                    }
                                },
                                "example": "<fcal_api>\r\n\t<interface>fcal API 2.02<\/interface>\r\n\t<source>\r\n\t\t<href>https:\/\/feiertagskalender.ch<\/href>\r\n\t\t<description>feiertagskalender.ch<\/description>\r\n\t<\/source>\r\n\t<copyright>\r\n\t\t<href>https:\/\/psc.ch<\/href>\r\n\t\t<description>psc Peter Schuetz Informatik-Dienstleistungen, CH Bern<\/description>\r\n\t<\/copyright>\r\n\t<apiStatus>\r\n\t\t<description>active<\/description>\r\n\t<\/apiStatus>\r\n\t<apiName>Data\/Country<\/apiName>\r\n\t<date>2025-02-27<\/date>\r\n\t<request>\r\n\t\t<iso>FR<\/iso>\r\n\t\t<year>2022<\/year>\r\n\t\t<class>4<\/class>\r\n\t\t<charset>utf-8<\/charset>\r\n\t\t<format>xml<\/format>\r\n\t\t<date_format>Y-m-d<\/date_format>\r\n\t\t<all_entities>0<\/all_entities>\r\n\t\t<hl>de<\/hl>\r\n\t<\/request>\r\n\t<results>\r\n\t\t<status>\r\n\t\t\t<description>ok<\/description>\r\n\t\t<\/status>\r\n\t\t<locations>\r\n\t\t\t<location>\r\n\t\t\t\t<description>Auvergne-Rhône-Alpes<\/description>\r\n\t\t\t\t<type>Region<\/type>\r\n\t\t\t\t<geoId>3099<\/geoId>\r\n\t\t\t\t<parentId>3079<\/parentId>\r\n\t\t\t\t<iso>FR<\/iso>\r\n\t\t\t\t<iso-3166-2>FR-ARA<\/iso-3166-2>\r\n\t\t\t\t<note><\/note>\r\n\t\t\t\t<events>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Neujahr<\/description>\r\n\t\t\t\t\t\t<id>1<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-01-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-01-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Ostern<\/description>\r\n\t\t\t\t\t\t<id>18<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-04-17<\/dateEnd>\r\n\t\t\t\t\t\t<class>4<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Ostermontag<\/description>\r\n\t\t\t\t\t\t<id>19<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-18<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-04-18<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Tag der Arbeit<\/description>\r\n\t\t\t\t\t\t<id>22<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Tag des Sieges 1945<\/description>\r\n\t\t\t\t\t\t<id>97<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-08<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-08<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Christi Himmelfahrt<\/description>\r\n\t\t\t\t\t\t<id>31<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-26<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-26<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Pfingsten<\/description>\r\n\t\t\t\t\t\t<id>30<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-06-05<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-06-05<\/dateEnd>\r\n\t\t\t\t\t\t<class>4<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Pfingstmontag<\/description>\r\n\t\t\t\t\t\t<id>35<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-06-06<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-06-06<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Nationalfeiertag Frankreich<\/description>\r\n\t\t\t\t\t\t<id>96<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-07-14<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-07-14<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Mariä Himmelfahrt<\/description>\r\n\t\t\t\t\t\t<id>42<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-08-15<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-08-15<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Allerheiligen<\/description>\r\n\t\t\t\t\t\t<id>47<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-11-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Gedenktag 1918<\/description>\r\n\t\t\t\t\t\t<id>98<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-11-11<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-11<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachten<\/description>\r\n\t\t\t\t\t\t<id>23<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-12-25<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-12-25<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachtsferien<\/description>\r\n\t\t\t\t\t\t<id>812135<\/id>\r\n\t\t\t\t\t\t<dateStart>2021-12-19<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-01-02<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Winterferien<\/description>\r\n\t\t\t\t\t\t<id>812136<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-02-13<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-02-27<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Frühlingsferien<\/description>\r\n\t\t\t\t\t\t<id>812137<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Auffahrtsferien<\/description>\r\n\t\t\t\t\t\t<id>812138<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-26<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-26<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Sommerferien<\/description>\r\n\t\t\t\t\t\t<id>812139<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-07-07<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-08-31<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Herbstferien<\/description>\r\n\t\t\t\t\t\t<id>826980<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-10-22<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-06<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachtsferien<\/description>\r\n\t\t\t\t\t\t<id>826981<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-12-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2023-01-02<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t<\/events>\r\n\t\t\t<\/location>\r\n\t\t\t<location>\r\n\t\t\t\t<description>Bourgogne-Franche-Comté<\/description>\r\n\t\t\t\t<type>Region<\/type>\r\n\t\t\t\t<geoId>3101<\/geoId>\r\n\t\t\t\t<parentId>3079<\/parentId>\r\n\t\t\t\t<iso>FR<\/iso>\r\n\t\t\t\t<iso-3166-2>FR-BFC<\/iso-3166-2>\r\n\t\t\t\t<note><\/note>\r\n\t\t\t\t<events>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Neujahr<\/description>\r\n\t\t\t\t\t\t<id>1<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-01-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-01-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Ostern<\/description>\r\n\t\t\t\t\t\t<id>18<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-04-17<\/dateEnd>\r\n\t\t\t\t\t\t<class>4<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Ostermontag<\/description>\r\n\t\t\t\t\t\t<id>19<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-18<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-04-18<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Tag der Arbeit<\/description>\r\n\t\t\t\t\t\t<id>22<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Tag des Sieges 1945<\/description>\r\n\t\t\t\t\t\t<id>97<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-08<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-08<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Christi Himmelfahrt<\/description>\r\n\t\t\t\t\t\t<id>31<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-26<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-26<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Pfingsten<\/description>\r\n\t\t\t\t\t\t<id>30<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-06-05<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-06-05<\/dateEnd>\r\n\t\t\t\t\t\t<class>4<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Pfingstmontag<\/description>\r\n\t\t\t\t\t\t<id>35<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-06-06<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-06-06<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Nationalfeiertag Frankreich<\/description>\r\n\t\t\t\t\t\t<id>96<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-07-14<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-07-14<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Mariä Himmelfahrt<\/description>\r\n\t\t\t\t\t\t<id>42<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-08-15<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-08-15<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Allerheiligen<\/description>\r\n\t\t\t\t\t\t<id>47<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-11-01<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Gedenktag 1918<\/description>\r\n\t\t\t\t\t\t<id>98<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-11-11<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-11<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachten<\/description>\r\n\t\t\t\t\t\t<id>23<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-12-25<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-12-25<\/dateEnd>\r\n\t\t\t\t\t\t<class>1<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachtsferien<\/description>\r\n\t\t\t\t\t\t<id>812232<\/id>\r\n\t\t\t\t\t\t<dateStart>2021-12-19<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-01-02<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Winterferien<\/description>\r\n\t\t\t\t\t\t<id>812233<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-02-13<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-02-27<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Frühlingsferien<\/description>\r\n\t\t\t\t\t\t<id>812234<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-04-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-01<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Auffahrtsferien<\/description>\r\n\t\t\t\t\t\t<id>812236<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-05-26<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-05-26<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Sommerferien<\/description>\r\n\t\t\t\t\t\t<id>812235<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-07-07<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-08-31<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Herbstferien<\/description>\r\n\t\t\t\t\t\t<id>827049<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-10-22<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2022-11-06<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t\t<event>\r\n\t\t\t\t\t\t<description>Weihnachtsferien<\/description>\r\n\t\t\t\t\t\t<id>827050<\/id>\r\n\t\t\t\t\t\t<dateStart>2022-12-17<\/dateStart>\r\n\t\t\t\t\t\t<dateEnd>2023-01-02<\/dateEnd>\r\n\t\t\t\t\t\t<class>0<\/class>\r\n\t\t\t\t\t\t<percent>100<\/percent>\r\n\t\t\t\t\t\t<prov>0<\/prov>\r\n\t\t\t\t\t\t<note><\/note>\r\n\t\t\t\t\t<\/event>\r\n\t\t\t\t<\/events>\r\n\t\t\t<\/location>\r\n\t\t<\/locations>\r\n\t<\/results>\r\n<\/fcal_api>\r\n"
                            },
                            "application\/csv": {
                                "example": "\"location\";\"geoId\";\"iso\";\"iso_3166_2\";\"description\";\"id\";\"dateStart\";\"dateEnd\";\"class\";\"percent\";\"prov\";\"note\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Neujahr\";\"1\";\"2022-01-01\";\"2022-01-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Ostern\";\"18\";\"2022-04-17\";\"2022-04-17\";\"4\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Ostermontag\";\"19\";\"2022-04-18\";\"2022-04-18\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Tag der Arbeit\";\"22\";\"2022-05-01\";\"2022-05-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Tag des Sieges 1945\";\"97\";\"2022-05-08\";\"2022-05-08\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Christi Himmelfahrt\";\"31\";\"2022-05-26\";\"2022-05-26\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Pfingsten\";\"30\";\"2022-06-05\";\"2022-06-05\";\"4\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Pfingstmontag\";\"35\";\"2022-06-06\";\"2022-06-06\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Nationalfeiertag Frankreich\";\"96\";\"2022-07-14\";\"2022-07-14\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Mariä Himmelfahrt\";\"42\";\"2022-08-15\";\"2022-08-15\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Allerheiligen\";\"47\";\"2022-11-01\";\"2022-11-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Gedenktag 1918\";\"98\";\"2022-11-11\";\"2022-11-11\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Weihnachten\";\"23\";\"2022-12-25\";\"2022-12-25\";\"1\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Weihnachtsferien\";\"812135\";\"2021-12-19\";\"2022-01-02\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Winterferien\";\"812136\";\"2022-02-13\";\"2022-02-27\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Frühlingsferien\";\"812137\";\"2022-04-17\";\"2022-05-01\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Auffahrtsferien\";\"812138\";\"2022-05-26\";\"2022-05-26\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Sommerferien\";\"812139\";\"2022-07-07\";\"2022-08-31\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Herbstferien\";\"826980\";\"2022-10-22\";\"2022-11-06\";\"0\";\"100\";\"0\";\"\"\r\n\"Auvergne-Rhône-Alpes\";\"3099\";\"FR\";\"FR-ARA\";\"Weihnachtsferien\";\"826981\";\"2022-12-17\";\"2023-01-02\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Neujahr\";\"1\";\"2022-01-01\";\"2022-01-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Ostern\";\"18\";\"2022-04-17\";\"2022-04-17\";\"4\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Ostermontag\";\"19\";\"2022-04-18\";\"2022-04-18\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Tag der Arbeit\";\"22\";\"2022-05-01\";\"2022-05-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Tag des Sieges 1945\";\"97\";\"2022-05-08\";\"2022-05-08\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Christi Himmelfahrt\";\"31\";\"2022-05-26\";\"2022-05-26\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Pfingsten\";\"30\";\"2022-06-05\";\"2022-06-05\";\"4\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Pfingstmontag\";\"35\";\"2022-06-06\";\"2022-06-06\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Nationalfeiertag Frankreich\";\"96\";\"2022-07-14\";\"2022-07-14\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Mariä Himmelfahrt\";\"42\";\"2022-08-15\";\"2022-08-15\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Allerheiligen\";\"47\";\"2022-11-01\";\"2022-11-01\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Gedenktag 1918\";\"98\";\"2022-11-11\";\"2022-11-11\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Weihnachten\";\"23\";\"2022-12-25\";\"2022-12-25\";\"1\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Weihnachtsferien\";\"812232\";\"2021-12-19\";\"2022-01-02\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Winterferien\";\"812233\";\"2022-02-13\";\"2022-02-27\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Frühlingsferien\";\"812234\";\"2022-04-17\";\"2022-05-01\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Auffahrtsferien\";\"812236\";\"2022-05-26\";\"2022-05-26\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Sommerferien\";\"812235\";\"2022-07-07\";\"2022-08-31\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Herbstferien\";\"827049\";\"2022-10-22\";\"2022-11-06\";\"0\";\"100\";\"0\";\"\"\r\n\"Bourgogne-Franche-Comté\";\"3101\";\"FR\";\"FR-BFC\";\"Weihnachtsferien\";\"827050\";\"2022-12-17\";\"2023-01-02\";\"0\";\"100\";\"0\";\"\""
                            }
                        }
                    },
                    "400": {
                        "description": "Incorrect request - missing or invalid parameters.",
                        "content": {
                            "application\/json": {
                                "examples": {
                                    "not subscribed": {
                                        "summary": "You have not subscribed to the desired data.",
                                        "value": {
                                            "results": {
                                                "status": {
                                                    "description": "not subscribed"
                                                }
                                            }
                                        }
                                    },
                                    "unknown_location": {
                                        "summary": "The requested ISO country code is not known. <br>Please check the parameter <strong>ISO<\/strong>",
                                        "value": {
                                            "results": {
                                                "status": {
                                                    "description": "unknown location"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Access denied - Invalid API key.",
                        "content": {
                            "application\/json": {
                                "examples": {
                                    "invalid_key": {
                                        "summary": "Invalid API key.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid key"
                                            }
                                        }
                                    },
                                    "invalid_usage": {
                                        "summary": "The use of this API is not enabled for this user.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid usage"
                                            }
                                        }
                                    },
                                    "invalid_referer": {
                                        "summary": "Invalid access. Links from web pages (front-ends) are not allowed.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid referer"
                                            }
                                        }
                                    },
                                    "inactive": {
                                        "summary": "The API has not yet been activated for use.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "inactive"
                                            }
                                        }
                                    },
                                    "expired": {
                                        "summary": "The period of use according to the contract has expired.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "expired"
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "500": {
                        "description": "Interner Serverfehler – ein unerwarteter Fehler ist aufgetreten.",
                        "content": {
                            "application\/json": {
                                "example": {
                                    "error": {
                                        "code": 500,
                                        "message": "Interner Serverfehler. Bitte versuchen Sie es später erneut."
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}