{
    "openapi": "3.0.0",
    "info": {
        "title": "Feiertagskalender API",
        "description": "Cette API détermine, pour toutes les unités géographiques saisies d'un pays, les jours de l'année où il y a un jour férié officiel ou des vacances scolaires.  Les paramètres requis sont `api_key` et `geoId`. Le paramètre `year` est facultatif - s'il n'est pas indiqué, l'année actuelle est automatiquement utilisée. En outre, la sortie peut être configurée à l'aide d'autres paramètres. Les paramètres sont transmis comme paramètres de requête dans l'URL. Alternativement, l'autorisation peut être donnée dans l'en-tête.<br><br>**Remarque concernant le format CSV:** La sortie CSV contient une structure de tableau plate dans laquelle les éléments JSON\/XML imbriqués ne sont pas représentés. Certains champs de données ne sont pas disponibles au format CSV.",
        "version": "0.9.0"
    },
    "servers": [
        {
            "url": "https:\/\/feiertagskalender.ch\/api"
        }
    ],
    "paths": {
        "\/Data\/Country\/index.php": {
            "get": {
                "tags": [
                    "Lire les données annuelles pour plusieurs lieux"
                ],
                "summary": "Obtient les jours fériés et les vacances scolaires pour une année entière pour toutes les entrées disponibles d'un pays, en se basant sur une abréviation ISO du pays (iso). (paramètre de requête)",
                "description": "**Data\/Country**<br>Cette API détermine, pour toutes les unités géographiques saisies d'un pays, les jours de l'année où il y a un jour férié officiel ou des vacances scolaires.  Les paramètres requis sont `api_key` et `geoId`. Le paramètre `year` est facultatif - s'il n'est pas indiqué, l'année actuelle est automatiquement utilisée. En outre, la sortie peut être configurée à l'aide d'autres paramètres. Les paramètres sont transmis comme paramètres de requête dans l'URL. Alternativement, l'autorisation peut être donnée dans l'en-tête.",
                "parameters": [
                    {
                        "name": "api_key",
                        "in": "query",
                        "required": true,
                        "description": "Votre clé API",
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "iso",
                        "in": "query",
                        "required": true,
                        "description": "Code pays ISO, 2 chiffres",
                        "schema": {
                            "type": "string"
                        }
                    },
                    {
                        "name": "year",
                        "in": "query",
                        "required": false,
                        "description": "Année (2000 - 2050)",
                        "schema": {
                            "type": "integer",
                            "minimum": 2000,
                            "maximum": 2050
                        }
                    },
                    {
                        "name": "class",
                        "in": "query",
                        "required": false,
                        "description": "Type de classe pour le filtrage. Valeurs disponibles:\r\n- `0` = vacances scolaires uniquement\r\n- `3` = 0 + jours fériés reconnus par la loi\r\n- `4` = 0 + 3 + jours fériés légaux et non légaux (religieux, culturels) (par défaut)\r\n- `5` = 0 + 3 + 4 + jours d'événements (par ex. Saint-Valentin, Fête des mères, Avent)",
                        "schema": {
                            "type": "integer",
                            "enum": [
                                0,
                                3,
                                4,
                                5
                            ],
                            "default": 4
                        }
                    },
                    {
                        "name": "all_entities",
                        "in": "query",
                        "required": false,
                        "description": " Portée des données géographiques :\r\n- `0` = seulement les niveaux Pays et ISO-3166-2 (= standard)\r\n- `1` = toutes les unités saisies",
                        "schema": {
                            "type": "integer",
                            "enum": [
                                0,
                                1
                            ],
                            "default": 0
                        }
                    },
                    {
                        "name": "charset",
                        "in": "query",
                        "required": false,
                        "description": "Le codage souhaité de la réponse",
                        "schema": {
                            "type": "string",
                            "enum": [
                                "utf-8",
                                "iso-8859-1"
                            ],
                            "default": "utf-8"
                        }
                    },
                    {
                        "name": "format",
                        "in": "query",
                        "required": false,
                        "description": "Le format de sortie souhaité",
                        "schema": {
                            "type": "string",
                            "enum": [
                                "json",
                                "xml",
                                "csv"
                            ],
                            "default": "json"
                        }
                    },
                    {
                        "name": "date_format",
                        "in": "query",
                        "required": false,
                        "description": "Le format de date souhaité pour la réponse. Par défaut:`Y-m-d` (ex., 2025-12-31)",
                        "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": "Langue de sortie souhaitée",
                        "schema": {
                            "type": "string",
                            "enum": [
                                "de",
                                "en",
                                "fr",
                                "it"
                            ],
                            "default": "de"
                        }
                    }
                ],
                "responses": {
                    "200": {
                        "description": "Réponse réussie avec les résultats de la requête. La sortie CSV contient une structure de tableau plate dans laquelle les éléments JSON\/XML imbriqués ne sont pas représentés. Veuillez noter que certains champs de données ne sont pas disponibles au format CSV. \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": "Demande erronée - paramètres manquants ou non valables.",
                        "content": {
                            "application\/json": {
                                "examples": {
                                    "not subscribed": {
                                        "summary": "Vous n'avez pas souscrit aux données souhaitées.",
                                        "value": {
                                            "results": {
                                                "status": {
                                                    "description": "not subscribed"
                                                }
                                            }
                                        }
                                    },
                                    "unknown_location": {
                                        "summary": "Le code pays ISO demandé n'est pas connu. \r\n<br>Veuillez vérifier le paramètre <strong>ISO<\/strong>",
                                        "value": {
                                            "results": {
                                                "status": {
                                                    "description": "unknown location"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Accès refusé - Clé API invalide.",
                        "content": {
                            "application\/json": {
                                "examples": {
                                    "invalid_key": {
                                        "summary": "Clé API invalide.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid key"
                                            }
                                        }
                                    },
                                    "invalid_usage": {
                                        "summary": "L'utilisation de cette API n'est pas activée pour cet utilisateur.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid usage"
                                            }
                                        }
                                    },
                                    "invalid_referer": {
                                        "summary": "Accès non valable. Les liens à partir de pages web (front-ends) ne sont pas autorisés.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid referer"
                                            }
                                        }
                                    },
                                    "inactive": {
                                        "summary": "L'API n'a pas encore été activée pour l'utilisation.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "inactive"
                                            }
                                        }
                                    },
                                    "expired": {
                                        "summary": "La période d'utilisation prévue par le contrat a expiré.",
                                        "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": [
                    "Lire les données annuelles pour plusieurs lieux"
                ],
                "summary": "Obtient les jours fériés et les vacances scolaires pour une année entière pour toutes les entrées disponibles d'un pays, en se basant sur une abréviation ISO du pays (iso). (requête JSON)",
                "description": "**Data\/Country**<br>Cette API détermine, pour toutes les unités géographiques saisies d'un pays, les jours de l'année où il y a un jour férié officiel ou des vacances scolaires.  Les paramètres requis sont `api_key` et `geoId`. Le paramètre `year` est facultatif - s'il n'est pas indiqué, l'année actuelle est automatiquement utilisée. De plus, la sortie peut être configurée à l'aide d'autres paramètres. Les paramètres sont transmis sous forme de JSON dans le corps de la requête. Alternativement, l'autorisation peut être donnée dans l'en-tête. ",
                "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": "Réponse réussie avec les résultats de la requête. La sortie CSV contient une structure de tableau plate dans laquelle les éléments JSON\/XML imbriqués ne sont pas représentés. Veuillez noter que certains champs de données ne sont pas disponibles au format CSV.",
                        "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": "Demande erronée - paramètres manquants ou non valables.",
                        "content": {
                            "application\/json": {
                                "examples": {
                                    "not subscribed": {
                                        "summary": "Vous n'avez pas souscrit aux données souhaitées.",
                                        "value": {
                                            "results": {
                                                "status": {
                                                    "description": "not subscribed"
                                                }
                                            }
                                        }
                                    },
                                    "unknown_location": {
                                        "summary": "Le code pays ISO demandé n'est pas connu. \r\n<br>Veuillez vérifier le paramètre <strong>ISO<\/strong>",
                                        "value": {
                                            "results": {
                                                "status": {
                                                    "description": "unknown location"
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    },
                    "403": {
                        "description": "Accès refusé - Clé API invalide.",
                        "content": {
                            "application\/json": {
                                "examples": {
                                    "invalid_key": {
                                        "summary": "Clé API invalide.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid key"
                                            }
                                        }
                                    },
                                    "invalid_usage": {
                                        "summary": "L'utilisation de cette API n'est pas activée pour cet utilisateur.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid usage"
                                            }
                                        }
                                    },
                                    "invalid_referer": {
                                        "summary": "Accès non valable. Les liens à partir de pages web (front-ends) ne sont pas autorisés.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "invalid referer"
                                            }
                                        }
                                    },
                                    "inactive": {
                                        "summary": "L'API n'a pas encore été activée pour l'utilisation.",
                                        "value": {
                                            "apiStatus": {
                                                "description": "inactive"
                                            }
                                        }
                                    },
                                    "expired": {
                                        "summary": "La période d'utilisation prévue par le contrat a expiré.",
                                        "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."
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}