diff --git a/index.js b/index.js index d42f8b6..2a2cf11 100644 --- a/index.js +++ b/index.js @@ -17,6 +17,10 @@ const app = express() const port = 3000 +/** + * BASE DATA : https://data.assemblee-nationale.fr/acteurs/deputes-en-exercice + */ + // Add modules to express app app.use(cors()) app.use(morgan('common')) @@ -30,9 +34,36 @@ app.use(express.static(join(__dirname, 'public'))) * Query params : * latitude * longitude + * id?: faster searches */ app.use('/rep', async (req, res) => { - let { lat, lon } = req.query + let { lat, lon, id } = req.query + + // First tries to get the ID if in request + if (id) { + const repIdRegex = new RegExp(/(PA)([0-9]+)/gi) + const parsedId = String(id).match(repIdRegex) + + // Fail first if regex fails + if (!parsedId) { + res.status(401).json({ + "message": "Le format de l'ID ne correspond pas au format attendu (une suite de chiffres préfixée de 'PA')" + }); + return + } + + // If regex okay, fetch file from server + try { + const repFile = readFileSync(join(__dirname, `public/reps/${parsedId}.json`), 'utf-8') + res.end(repFile) + return + } catch (err) { + res.status(404).json({ + "message": "Aucun député n'a été trouvé avec cet identifiant" + }); + return + } + } // If the query doesn't contain the required params... if (!lat || !lon) { @@ -69,12 +100,6 @@ app.use('/rep', async (req, res) => { let circoForeign - // foreignLookupTable.forEach((value, index) => { - // if (value.includes(countryName)) { - // circoForeign = index - // } - // }); - for (const [key, value] of Object.entries(foreignLookupTable)) { if (value.includes(countryName)) { circoForeign = key @@ -140,6 +165,38 @@ app.use('/rep', async (req, res) => { readStream.pipe(parseStream); }) +/** + * POLITICAL PARTY ROUTE + * Query params : + * id?: faster searches + */ +app.use('/org', async (req, res) => { + const { id } = req.query + + const repIdRegex = new RegExp(/(PO)([0-9]+)/gi) + const parsedId = String(id).match(repIdRegex) + + // Fail first if regex fails + if (!parsedId) { + res.status(401).json({ + "message": "Le format de l'ID ne correspond pas au format attendu (une suite de chiffres préfixée de 'PO')" + }); + return + } + + // If regex okay, fetch file from server + try { + const repFile = readFileSync(join(__dirname, `public/organe/${parsedId}.json`), 'utf-8') + res.end(repFile) + return + } catch (err) { + res.status(404).json({ + "message": "Aucun organe ou groupe politique n'a été trouvé avec cet identifiant" + }); + return + } +}) + app.listen(port, () => console.log(`Server listening on port: ${port}`)); /** diff --git a/public/organe/PO191887.json b/public/organe/PO191887.json new file mode 100644 index 0000000..44fd845 --- /dev/null +++ b/public/organe/PO191887.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO191887", "codeType": "ORGEXTPARL", "libelle": "Commission nationale pour l'\u00e9limination des mines antipersonnel", "libelleEdition": "de la Commission nationale pour l'\u00e9limination des mines antipersonnel", "libelleAbrege": "Mines antipersonnel", "libelleAbrev": "160", "viMoDe": {"dateDebut": "1999-05-11", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 2345-1 du code de la d\u00e9fense", "siteInternet": "https://www.diplomatie.gouv.fr/fr/politique-etrangere-de-la-france/desarmement-et-non-proliferation/la-france-et-l-elimination-des-mines-antipersonnel/article/la-politique-francaise-en-matiere", "nombreReunionsAnnuelles": "2"}} \ No newline at end of file diff --git a/public/organe/PO201115.json b/public/organe/PO201115.json new file mode 100644 index 0000000..8e3a004 --- /dev/null +++ b/public/organe/PO201115.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO201115", "codeType": "API", "libelle": "Section fran\u00e7aise de l'Assembl\u00e9e parlementaire de la francophonie (A.P.F.)", "libelleEdition": "de la section fran\u00e7aise de l'Assembl\u00e9e parlementaire de la francophonie", "libelleAbrege": "APF", "libelleAbrev": "APF", "viMoDe": {"dateDebut": "1998-07-09", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Fr\u00e9d\u00e9ric Taillet", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO201269.json b/public/organe/PO201269.json new file mode 100644 index 0000000..7ba3d35 --- /dev/null +++ b/public/organe/PO201269.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO201269", "codeType": "DELEG", "libelle": "D\u00e9l\u00e9gation de l'Assembl\u00e9e nationale aux droits des femmes et \u00e0 l'\u00e9galit\u00e9 des chances entre les hommes et les femmes", "libelleEdition": "de la d\u00e9l\u00e9gation de l'Assembl\u00e9e nationale aux droits des femmes et \u00e0 l'\u00e9galit\u00e9 des chances entre les hommes et les femmes", "libelleAbrege": "D\u00e9l\u00e9gation de l'Assembl\u00e9e nationale aux droits des femmes", "libelleAbrev": "EGA", "viMoDe": {"dateDebut": "1999-07-12", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO201361.json b/public/organe/PO201361.json new file mode 100644 index 0000000..2b86857 --- /dev/null +++ b/public/organe/PO201361.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO201361", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 local d'information et de suivi du laboratoire souterrain de Bure", "libelleEdition": "du Comit\u00e9 local d'information et de suivi du laboratoire souterrain de Bure", "libelleAbrege": "Laboratoire de Bure", "libelleAbrev": "161", "viMoDe": {"dateDebut": "1991-12-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 542-13 du code de l\u2019environnement", "siteInternet": "http://www.clis-bure.com/cadres/c_role.html", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO206064.json b/public/organe/PO206064.json new file mode 100644 index 0000000..bf2df8c --- /dev/null +++ b/public/organe/PO206064.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO206064", "codeType": "API", "libelle": "Groupe fran\u00e7ais de l'Union interparlementaire (U.I.P.)", "libelleEdition": "du Groupe fran\u00e7ais de l'Union interparlementaire", "libelleAbrege": "UIP", "libelleAbrev": "UIP", "viMoDe": {"dateDebut": "1997-07-02", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Bertrand de Cordovez", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO211490.json b/public/organe/PO211490.json new file mode 100644 index 0000000..335151f --- /dev/null +++ b/public/organe/PO211490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO211490", "codeType": "COMSENAT", "libelle": "Commission de la culture, de l'\u00e9ducation et de la communication", "libelleEdition": "de la commission de la culture, de l'\u00e9ducation et de la communication", "libelleAbrege": "Culture, \u00e9ducation et communication", "libelleAbrev": "AFCLC", "viMoDe": {"dateDebut": "1899-12-31", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO211491.json b/public/organe/PO211491.json new file mode 100644 index 0000000..0ae1860 --- /dev/null +++ b/public/organe/PO211491.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO211491", "codeType": "COMSENAT", "libelle": "Commission des affaires \u00e9trang\u00e8res, de la d\u00e9fense et des forces arm\u00e9es", "libelleEdition": "de la commission des affaires \u00e9trang\u00e8res, de la d\u00e9fense et des forces arm\u00e9es", "libelleAbrege": "Affaires \u00e9trang\u00e8res, d\u00e9fense et forces arm\u00e9es", "libelleAbrev": "ETRDC", "viMoDe": {"dateDebut": "1900-01-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO211493.json b/public/organe/PO211493.json new file mode 100644 index 0000000..cc6d2ae --- /dev/null +++ b/public/organe/PO211493.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO211493", "codeType": "COMSENAT", "libelle": "Commission des affaires sociales", "libelleEdition": "de la commission des affaires sociales", "libelleAbrege": "Affaires sociales", "libelleAbrev": "SOCIC", "viMoDe": {"dateDebut": "1900-01-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO211494.json b/public/organe/PO211494.json new file mode 100644 index 0000000..f04ac45 --- /dev/null +++ b/public/organe/PO211494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO211494", "codeType": "COMSENAT", "libelle": "Commission des finances", "libelleEdition": "de la commission des finances", "libelleAbrege": "Finances", "libelleAbrev": "FINCC", "viMoDe": {"dateDebut": "1900-01-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO211495.json b/public/organe/PO211495.json new file mode 100644 index 0000000..fd4b7b9 --- /dev/null +++ b/public/organe/PO211495.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO211495", "codeType": "COMSENAT", "libelle": "Commission des lois constitutionnelles, de l\u00e9gislation, du suffrage universel, du R\u00e8glement et d'administration g\u00e9n\u00e9rale", "libelleEdition": "de la commission des lois constitutionnelles, de l\u00e9gislation, du suffrage universel, du R\u00e8glement et d'administration g\u00e9n\u00e9rale", "libelleAbrege": "Lois constitutionnelles, l\u00e9gislation, suffrage universel, R\u00e8glement et administr", "libelleAbrev": "LOISC", "viMoDe": {"dateDebut": "1900-01-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO215413.json b/public/organe/PO215413.json new file mode 100644 index 0000000..07fc763 --- /dev/null +++ b/public/organe/PO215413.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO215413", "codeType": "ORGEXTPARL", "libelle": "Conseil d'orientation des retraites", "libelleEdition": "du Conseil d'orientation des retraites", "libelleAbrege": "Orientation des retraites", "libelleAbrev": "164", "viMoDe": {"dateDebut": "2000-05-10", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 114-2 du code de la s\u00e9curit\u00e9 sociale", "siteInternet": "http://www.cor-retraites.fr/", "nombreReunionsAnnuelles": "20"}} \ No newline at end of file diff --git a/public/organe/PO218801.json b/public/organe/PO218801.json new file mode 100644 index 0000000..ffe695d --- /dev/null +++ b/public/organe/PO218801.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO218801", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur de la r\u00e9serve militaire", "libelleEdition": "du Conseil sup\u00e9rieur de la r\u00e9serve militaire", "libelleAbrege": "R\u00e9serve militaire", "libelleAbrev": "168", "viMoDe": {"dateDebut": "2000-09-13", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 4261-1 du code de la d\u00e9fense", "siteInternet": "http://www.cor-retraites.fr/article269.html", "nombreReunionsAnnuelles": "3"}} \ No newline at end of file diff --git a/public/organe/PO218806.json b/public/organe/PO218806.json new file mode 100644 index 0000000..4c7a69d --- /dev/null +++ b/public/organe/PO218806.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO218806", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 national de l'initiative fran\u00e7aise pour les r\u00e9cifs coralliens", "libelleEdition": "du Comit\u00e9 national de l'initiative fran\u00e7aise pour les r\u00e9cifs coralliens", "libelleAbrege": "R\u00e9cifs coralliens", "libelleAbrev": "169", "viMoDe": {"dateDebut": "2000-07-07", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 213-20-1 du code de l'environnement", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO223397.json b/public/organe/PO223397.json new file mode 100644 index 0000000..f1f9a7c --- /dev/null +++ b/public/organe/PO223397.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO223397", "codeType": "ORGEXTPARL", "libelle": "Conseil d'orientation pour la pr\u00e9vention des risques naturels majeurs", "libelleEdition": "du Conseil d'orientation pour la pr\u00e9vention des risques naturels majeurs", "libelleAbrege": "Risques naturels", "libelleAbrev": "172", "viMoDe": {"dateDebut": "2001-02-05", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 565-3 du code de l'environnement", "siteInternet": "https://afpcn.org/animation-et-reseau-dacteurs/participation-aux-commissions/coprnm-2/", "nombreReunionsAnnuelles": "7"}} \ No newline at end of file diff --git a/public/organe/PO226722.json b/public/organe/PO226722.json new file mode 100644 index 0000000..20c4949 --- /dev/null +++ b/public/organe/PO226722.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO226722", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "T", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO226723.json b/public/organe/PO226723.json new file mode 100644 index 0000000..cd1ddc7 --- /dev/null +++ b/public/organe/PO226723.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO226723", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO226840.json b/public/organe/PO226840.json new file mode 100644 index 0000000..84c82eb --- /dev/null +++ b/public/organe/PO226840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO226840", "codeType": "ORGEXTPARL", "libelle": "Conseil national de la s\u00e9curit\u00e9 routi\u00e8re", "libelleEdition": "du Conseil national de la s\u00e9curit\u00e9 routi\u00e8re", "libelleAbrege": "S\u00e9curit\u00e9 routi\u00e8re", "libelleAbrev": "176", "viMoDe": {"dateDebut": "2001-08-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 130-10 du code de la route", "siteInternet": "https://www.conseil-national-securite-routiere.fr/", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO229333.json b/public/organe/PO229333.json new file mode 100644 index 0000000..2412daf --- /dev/null +++ b/public/organe/PO229333.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO229333", "codeType": "ORGEXTPARL", "libelle": "Commission d'examen des pratiques commerciales", "libelleEdition": "de la Commission d'examen des pratiques commerciales", "libelleAbrege": "Pratiques commerciales", "libelleAbrev": "179", "viMoDe": {"dateDebut": "2001-12-31", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 440-1 du code de commerce", "siteInternet": "https://www.economie.gouv.fr/cepc", "nombreReunionsAnnuelles": "6"}} \ No newline at end of file diff --git a/public/organe/PO229652.json b/public/organe/PO229652.json new file mode 100644 index 0000000..8e6f30e --- /dev/null +++ b/public/organe/PO229652.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO229652", "codeType": "ORGEXTPARL", "libelle": "Conseil de surveillance du Fonds de r\u00e9serve pour les retraites", "libelleEdition": "du conseil de surveillance du Fonds de r\u00e9serve pour les retraites", "libelleAbrege": "Fonds de r\u00e9serve retraites", "libelleAbrev": "180", "viMoDe": {"dateDebut": "2002-01-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 135-8 du code de la s\u00e9curit\u00e9 sociale", "siteInternet": "http://www.fondsdereserve.fr/fr/organisation/conseil-de-surveillance", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO230435.json b/public/organe/PO230435.json new file mode 100644 index 0000000..24736f9 --- /dev/null +++ b/public/organe/PO230435.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230435", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO230436.json b/public/organe/PO230436.json new file mode 100644 index 0000000..94f43de --- /dev/null +++ b/public/organe/PO230436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230436", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO230437.json b/public/organe/PO230437.json new file mode 100644 index 0000000..62bd280 --- /dev/null +++ b/public/organe/PO230437.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230437", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO230438.json b/public/organe/PO230438.json new file mode 100644 index 0000000..9daf54f --- /dev/null +++ b/public/organe/PO230438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230438", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO230439.json b/public/organe/PO230439.json new file mode 100644 index 0000000..e74f15f --- /dev/null +++ b/public/organe/PO230439.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230439", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO230440.json b/public/organe/PO230440.json new file mode 100644 index 0000000..3ec978f --- /dev/null +++ b/public/organe/PO230440.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230440", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO230441.json b/public/organe/PO230441.json new file mode 100644 index 0000000..0be6c9b --- /dev/null +++ b/public/organe/PO230441.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230441", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO230442.json b/public/organe/PO230442.json new file mode 100644 index 0000000..42510c2 --- /dev/null +++ b/public/organe/PO230442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230442", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO230443.json b/public/organe/PO230443.json new file mode 100644 index 0000000..7910aab --- /dev/null +++ b/public/organe/PO230443.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230443", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO230444.json b/public/organe/PO230444.json new file mode 100644 index 0000000..eb49dc3 --- /dev/null +++ b/public/organe/PO230444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230444", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO230445.json b/public/organe/PO230445.json new file mode 100644 index 0000000..2720c73 --- /dev/null +++ b/public/organe/PO230445.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230445", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO230446.json b/public/organe/PO230446.json new file mode 100644 index 0000000..7a8d326 --- /dev/null +++ b/public/organe/PO230446.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230446", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO230447.json b/public/organe/PO230447.json new file mode 100644 index 0000000..0f73d80 --- /dev/null +++ b/public/organe/PO230447.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230447", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO230448.json b/public/organe/PO230448.json new file mode 100644 index 0000000..e0852a8 --- /dev/null +++ b/public/organe/PO230448.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230448", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO230449.json b/public/organe/PO230449.json new file mode 100644 index 0000000..79ffb24 --- /dev/null +++ b/public/organe/PO230449.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230449", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO230450.json b/public/organe/PO230450.json new file mode 100644 index 0000000..64ea2f5 --- /dev/null +++ b/public/organe/PO230450.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230450", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO230451.json b/public/organe/PO230451.json new file mode 100644 index 0000000..16798b9 --- /dev/null +++ b/public/organe/PO230451.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230451", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO230452.json b/public/organe/PO230452.json new file mode 100644 index 0000000..1eae835 --- /dev/null +++ b/public/organe/PO230452.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230452", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO230453.json b/public/organe/PO230453.json new file mode 100644 index 0000000..3c2b7c0 --- /dev/null +++ b/public/organe/PO230453.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230453", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO230454.json b/public/organe/PO230454.json new file mode 100644 index 0000000..019d387 --- /dev/null +++ b/public/organe/PO230454.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230454", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO230455.json b/public/organe/PO230455.json new file mode 100644 index 0000000..957e29f --- /dev/null +++ b/public/organe/PO230455.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230455", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO230456.json b/public/organe/PO230456.json new file mode 100644 index 0000000..db08aa3 --- /dev/null +++ b/public/organe/PO230456.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230456", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO230457.json b/public/organe/PO230457.json new file mode 100644 index 0000000..861289b --- /dev/null +++ b/public/organe/PO230457.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230457", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO230458.json b/public/organe/PO230458.json new file mode 100644 index 0000000..93be9b3 --- /dev/null +++ b/public/organe/PO230458.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230458", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO230459.json b/public/organe/PO230459.json new file mode 100644 index 0000000..23ff4e5 --- /dev/null +++ b/public/organe/PO230459.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230459", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO230460.json b/public/organe/PO230460.json new file mode 100644 index 0000000..ade7045 --- /dev/null +++ b/public/organe/PO230460.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230460", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO230461.json b/public/organe/PO230461.json new file mode 100644 index 0000000..a0a97c8 --- /dev/null +++ b/public/organe/PO230461.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230461", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO230462.json b/public/organe/PO230462.json new file mode 100644 index 0000000..3ae3008 --- /dev/null +++ b/public/organe/PO230462.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230462", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO230463.json b/public/organe/PO230463.json new file mode 100644 index 0000000..85c2bf5 --- /dev/null +++ b/public/organe/PO230463.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230463", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO230464.json b/public/organe/PO230464.json new file mode 100644 index 0000000..38a8e3f --- /dev/null +++ b/public/organe/PO230464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230464", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO230465.json b/public/organe/PO230465.json new file mode 100644 index 0000000..fc3aa87 --- /dev/null +++ b/public/organe/PO230465.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230465", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO230466.json b/public/organe/PO230466.json new file mode 100644 index 0000000..8d13988 --- /dev/null +++ b/public/organe/PO230466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230466", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO230467.json b/public/organe/PO230467.json new file mode 100644 index 0000000..04140ab --- /dev/null +++ b/public/organe/PO230467.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230467", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO230468.json b/public/organe/PO230468.json new file mode 100644 index 0000000..4b0a9aa --- /dev/null +++ b/public/organe/PO230468.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230468", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO230469.json b/public/organe/PO230469.json new file mode 100644 index 0000000..b089d2d --- /dev/null +++ b/public/organe/PO230469.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230469", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO230470.json b/public/organe/PO230470.json new file mode 100644 index 0000000..2bcba28 --- /dev/null +++ b/public/organe/PO230470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230470", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO230471.json b/public/organe/PO230471.json new file mode 100644 index 0000000..6ae5d33 --- /dev/null +++ b/public/organe/PO230471.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230471", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO230472.json b/public/organe/PO230472.json new file mode 100644 index 0000000..dc1dc8c --- /dev/null +++ b/public/organe/PO230472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230472", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO230473.json b/public/organe/PO230473.json new file mode 100644 index 0000000..c646a58 --- /dev/null +++ b/public/organe/PO230473.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230473", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO230474.json b/public/organe/PO230474.json new file mode 100644 index 0000000..86d00cd --- /dev/null +++ b/public/organe/PO230474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230474", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO230475.json b/public/organe/PO230475.json new file mode 100644 index 0000000..9ac02d1 --- /dev/null +++ b/public/organe/PO230475.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230475", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO230476.json b/public/organe/PO230476.json new file mode 100644 index 0000000..495748c --- /dev/null +++ b/public/organe/PO230476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230476", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO230477.json b/public/organe/PO230477.json new file mode 100644 index 0000000..707d4e3 --- /dev/null +++ b/public/organe/PO230477.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230477", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO230478.json b/public/organe/PO230478.json new file mode 100644 index 0000000..7a12e48 --- /dev/null +++ b/public/organe/PO230478.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230478", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230479.json b/public/organe/PO230479.json new file mode 100644 index 0000000..cf696bf --- /dev/null +++ b/public/organe/PO230479.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230479", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230480.json b/public/organe/PO230480.json new file mode 100644 index 0000000..866187f --- /dev/null +++ b/public/organe/PO230480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230480", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230481.json b/public/organe/PO230481.json new file mode 100644 index 0000000..3679f09 --- /dev/null +++ b/public/organe/PO230481.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230481", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230482.json b/public/organe/PO230482.json new file mode 100644 index 0000000..1c8bad8 --- /dev/null +++ b/public/organe/PO230482.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230482", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230483.json b/public/organe/PO230483.json new file mode 100644 index 0000000..f41dccb --- /dev/null +++ b/public/organe/PO230483.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230483", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230484.json b/public/organe/PO230484.json new file mode 100644 index 0000000..4b8470a --- /dev/null +++ b/public/organe/PO230484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230484", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230485.json b/public/organe/PO230485.json new file mode 100644 index 0000000..7780e66 --- /dev/null +++ b/public/organe/PO230485.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230485", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230486.json b/public/organe/PO230486.json new file mode 100644 index 0000000..a19d20c --- /dev/null +++ b/public/organe/PO230486.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230486", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230487.json b/public/organe/PO230487.json new file mode 100644 index 0000000..4eedac7 --- /dev/null +++ b/public/organe/PO230487.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230487", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230488.json b/public/organe/PO230488.json new file mode 100644 index 0000000..41c3f82 --- /dev/null +++ b/public/organe/PO230488.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230488", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230489.json b/public/organe/PO230489.json new file mode 100644 index 0000000..aacb759 --- /dev/null +++ b/public/organe/PO230489.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230489", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230490.json b/public/organe/PO230490.json new file mode 100644 index 0000000..8e53e02 --- /dev/null +++ b/public/organe/PO230490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230490", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230491.json b/public/organe/PO230491.json new file mode 100644 index 0000000..1127eb6 --- /dev/null +++ b/public/organe/PO230491.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230491", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230492.json b/public/organe/PO230492.json new file mode 100644 index 0000000..276ffc9 --- /dev/null +++ b/public/organe/PO230492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230492", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230493.json b/public/organe/PO230493.json new file mode 100644 index 0000000..4ed0b21 --- /dev/null +++ b/public/organe/PO230493.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230493", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230494.json b/public/organe/PO230494.json new file mode 100644 index 0000000..77cc006 --- /dev/null +++ b/public/organe/PO230494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230494", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO230495.json b/public/organe/PO230495.json new file mode 100644 index 0000000..9c31845 --- /dev/null +++ b/public/organe/PO230495.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230495", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO230496.json b/public/organe/PO230496.json new file mode 100644 index 0000000..e38fcac --- /dev/null +++ b/public/organe/PO230496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230496", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO230497.json b/public/organe/PO230497.json new file mode 100644 index 0000000..f00549c --- /dev/null +++ b/public/organe/PO230497.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230497", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO230498.json b/public/organe/PO230498.json new file mode 100644 index 0000000..5bc1890 --- /dev/null +++ b/public/organe/PO230498.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230498", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO230499.json b/public/organe/PO230499.json new file mode 100644 index 0000000..41fda0b --- /dev/null +++ b/public/organe/PO230499.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230499", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO230500.json b/public/organe/PO230500.json new file mode 100644 index 0000000..ebfea32 --- /dev/null +++ b/public/organe/PO230500.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230500", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO230501.json b/public/organe/PO230501.json new file mode 100644 index 0000000..e78155b --- /dev/null +++ b/public/organe/PO230501.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230501", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO230502.json b/public/organe/PO230502.json new file mode 100644 index 0000000..78b690e --- /dev/null +++ b/public/organe/PO230502.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230502", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO230503.json b/public/organe/PO230503.json new file mode 100644 index 0000000..6da7547 --- /dev/null +++ b/public/organe/PO230503.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230503", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO230504.json b/public/organe/PO230504.json new file mode 100644 index 0000000..5de64b5 --- /dev/null +++ b/public/organe/PO230504.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230504", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO230505.json b/public/organe/PO230505.json new file mode 100644 index 0000000..619c5ec --- /dev/null +++ b/public/organe/PO230505.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230505", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO230506.json b/public/organe/PO230506.json new file mode 100644 index 0000000..129826b --- /dev/null +++ b/public/organe/PO230506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230506", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230507.json b/public/organe/PO230507.json new file mode 100644 index 0000000..158a728 --- /dev/null +++ b/public/organe/PO230507.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230507", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230508.json b/public/organe/PO230508.json new file mode 100644 index 0000000..dd583a0 --- /dev/null +++ b/public/organe/PO230508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230508", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230509.json b/public/organe/PO230509.json new file mode 100644 index 0000000..305c6a3 --- /dev/null +++ b/public/organe/PO230509.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230509", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230510.json b/public/organe/PO230510.json new file mode 100644 index 0000000..cb177dd --- /dev/null +++ b/public/organe/PO230510.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230510", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230511.json b/public/organe/PO230511.json new file mode 100644 index 0000000..4f033f0 --- /dev/null +++ b/public/organe/PO230511.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230511", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO230512.json b/public/organe/PO230512.json new file mode 100644 index 0000000..2c5e21b --- /dev/null +++ b/public/organe/PO230512.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230512", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO230513.json b/public/organe/PO230513.json new file mode 100644 index 0000000..a153548 --- /dev/null +++ b/public/organe/PO230513.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230513", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO230514.json b/public/organe/PO230514.json new file mode 100644 index 0000000..69e6470 --- /dev/null +++ b/public/organe/PO230514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230514", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO230515.json b/public/organe/PO230515.json new file mode 100644 index 0000000..bf3f9ae --- /dev/null +++ b/public/organe/PO230515.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230515", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO230516.json b/public/organe/PO230516.json new file mode 100644 index 0000000..43b9d53 --- /dev/null +++ b/public/organe/PO230516.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230516", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO230517.json b/public/organe/PO230517.json new file mode 100644 index 0000000..c3a8ec1 --- /dev/null +++ b/public/organe/PO230517.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230517", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO230518.json b/public/organe/PO230518.json new file mode 100644 index 0000000..2665e6e --- /dev/null +++ b/public/organe/PO230518.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230518", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO230519.json b/public/organe/PO230519.json new file mode 100644 index 0000000..f5d1a51 --- /dev/null +++ b/public/organe/PO230519.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230519", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO230520.json b/public/organe/PO230520.json new file mode 100644 index 0000000..d704bf9 --- /dev/null +++ b/public/organe/PO230520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230520", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO230521.json b/public/organe/PO230521.json new file mode 100644 index 0000000..cdab7d5 --- /dev/null +++ b/public/organe/PO230521.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230521", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO230522.json b/public/organe/PO230522.json new file mode 100644 index 0000000..8d35a1f --- /dev/null +++ b/public/organe/PO230522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230522", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO230523.json b/public/organe/PO230523.json new file mode 100644 index 0000000..fe65156 --- /dev/null +++ b/public/organe/PO230523.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230523", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO230524.json b/public/organe/PO230524.json new file mode 100644 index 0000000..3d26ca8 --- /dev/null +++ b/public/organe/PO230524.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230524", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO230525.json b/public/organe/PO230525.json new file mode 100644 index 0000000..f836b6e --- /dev/null +++ b/public/organe/PO230525.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230525", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO230526.json b/public/organe/PO230526.json new file mode 100644 index 0000000..f7215e2 --- /dev/null +++ b/public/organe/PO230526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230526", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO230527.json b/public/organe/PO230527.json new file mode 100644 index 0000000..1110bef --- /dev/null +++ b/public/organe/PO230527.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230527", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO230528.json b/public/organe/PO230528.json new file mode 100644 index 0000000..1176088 --- /dev/null +++ b/public/organe/PO230528.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230528", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO230529.json b/public/organe/PO230529.json new file mode 100644 index 0000000..b3f8eb6 --- /dev/null +++ b/public/organe/PO230529.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230529", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO230530.json b/public/organe/PO230530.json new file mode 100644 index 0000000..f7e81cd --- /dev/null +++ b/public/organe/PO230530.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230530", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO230531.json b/public/organe/PO230531.json new file mode 100644 index 0000000..8a8b77e --- /dev/null +++ b/public/organe/PO230531.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230531", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO230532.json b/public/organe/PO230532.json new file mode 100644 index 0000000..262a686 --- /dev/null +++ b/public/organe/PO230532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230532", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO230533.json b/public/organe/PO230533.json new file mode 100644 index 0000000..a36b4aa --- /dev/null +++ b/public/organe/PO230533.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230533", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO230534.json b/public/organe/PO230534.json new file mode 100644 index 0000000..ccef761 --- /dev/null +++ b/public/organe/PO230534.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230534", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO230535.json b/public/organe/PO230535.json new file mode 100644 index 0000000..7c103ec --- /dev/null +++ b/public/organe/PO230535.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230535", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO230536.json b/public/organe/PO230536.json new file mode 100644 index 0000000..16f5ecc --- /dev/null +++ b/public/organe/PO230536.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230536", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO230537.json b/public/organe/PO230537.json new file mode 100644 index 0000000..75d9316 --- /dev/null +++ b/public/organe/PO230537.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230537", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO230538.json b/public/organe/PO230538.json new file mode 100644 index 0000000..8cb0044 --- /dev/null +++ b/public/organe/PO230538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230538", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO230539.json b/public/organe/PO230539.json new file mode 100644 index 0000000..6249fb2 --- /dev/null +++ b/public/organe/PO230539.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230539", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO230540.json b/public/organe/PO230540.json new file mode 100644 index 0000000..2f6dd80 --- /dev/null +++ b/public/organe/PO230540.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230540", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO230541.json b/public/organe/PO230541.json new file mode 100644 index 0000000..82ac826 --- /dev/null +++ b/public/organe/PO230541.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230541", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO230542.json b/public/organe/PO230542.json new file mode 100644 index 0000000..a76e9b6 --- /dev/null +++ b/public/organe/PO230542.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230542", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230543.json b/public/organe/PO230543.json new file mode 100644 index 0000000..6840415 --- /dev/null +++ b/public/organe/PO230543.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230543", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230544.json b/public/organe/PO230544.json new file mode 100644 index 0000000..158f82f --- /dev/null +++ b/public/organe/PO230544.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230544", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230545.json b/public/organe/PO230545.json new file mode 100644 index 0000000..5b7a3ac --- /dev/null +++ b/public/organe/PO230545.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230545", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230546.json b/public/organe/PO230546.json new file mode 100644 index 0000000..172be1f --- /dev/null +++ b/public/organe/PO230546.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230546", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO230547.json b/public/organe/PO230547.json new file mode 100644 index 0000000..6e582bf --- /dev/null +++ b/public/organe/PO230547.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230547", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO230548.json b/public/organe/PO230548.json new file mode 100644 index 0000000..6fb1448 --- /dev/null +++ b/public/organe/PO230548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230548", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO230549.json b/public/organe/PO230549.json new file mode 100644 index 0000000..0218c3a --- /dev/null +++ b/public/organe/PO230549.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230549", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO230550.json b/public/organe/PO230550.json new file mode 100644 index 0000000..1e01e31 --- /dev/null +++ b/public/organe/PO230550.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230550", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO230551.json b/public/organe/PO230551.json new file mode 100644 index 0000000..90c48a7 --- /dev/null +++ b/public/organe/PO230551.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230551", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO230552.json b/public/organe/PO230552.json new file mode 100644 index 0000000..2a6050a --- /dev/null +++ b/public/organe/PO230552.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230552", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO230553.json b/public/organe/PO230553.json new file mode 100644 index 0000000..fa82c6e --- /dev/null +++ b/public/organe/PO230553.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230553", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO230554.json b/public/organe/PO230554.json new file mode 100644 index 0000000..ea09985 --- /dev/null +++ b/public/organe/PO230554.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230554", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO230555.json b/public/organe/PO230555.json new file mode 100644 index 0000000..920e84f --- /dev/null +++ b/public/organe/PO230555.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230555", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230556.json b/public/organe/PO230556.json new file mode 100644 index 0000000..f0eea78 --- /dev/null +++ b/public/organe/PO230556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230556", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230557.json b/public/organe/PO230557.json new file mode 100644 index 0000000..f40173c --- /dev/null +++ b/public/organe/PO230557.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230557", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230558.json b/public/organe/PO230558.json new file mode 100644 index 0000000..a92ef44 --- /dev/null +++ b/public/organe/PO230558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230558", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230559.json b/public/organe/PO230559.json new file mode 100644 index 0000000..ee72488 --- /dev/null +++ b/public/organe/PO230559.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230559", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230560.json b/public/organe/PO230560.json new file mode 100644 index 0000000..12d7293 --- /dev/null +++ b/public/organe/PO230560.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230560", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230561.json b/public/organe/PO230561.json new file mode 100644 index 0000000..303f2a7 --- /dev/null +++ b/public/organe/PO230561.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230561", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230562.json b/public/organe/PO230562.json new file mode 100644 index 0000000..5508c22 --- /dev/null +++ b/public/organe/PO230562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230562", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230563.json b/public/organe/PO230563.json new file mode 100644 index 0000000..65f90f7 --- /dev/null +++ b/public/organe/PO230563.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230563", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO230564.json b/public/organe/PO230564.json new file mode 100644 index 0000000..809b1a8 --- /dev/null +++ b/public/organe/PO230564.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230564", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO230565.json b/public/organe/PO230565.json new file mode 100644 index 0000000..536f809 --- /dev/null +++ b/public/organe/PO230565.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230565", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO230566.json b/public/organe/PO230566.json new file mode 100644 index 0000000..818d48c --- /dev/null +++ b/public/organe/PO230566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230566", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO230567.json b/public/organe/PO230567.json new file mode 100644 index 0000000..13d52d7 --- /dev/null +++ b/public/organe/PO230567.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230567", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO230568.json b/public/organe/PO230568.json new file mode 100644 index 0000000..2eb869e --- /dev/null +++ b/public/organe/PO230568.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230568", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230569.json b/public/organe/PO230569.json new file mode 100644 index 0000000..6f5d9f4 --- /dev/null +++ b/public/organe/PO230569.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230569", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230570.json b/public/organe/PO230570.json new file mode 100644 index 0000000..2963c51 --- /dev/null +++ b/public/organe/PO230570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230570", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230571.json b/public/organe/PO230571.json new file mode 100644 index 0000000..d404971 --- /dev/null +++ b/public/organe/PO230571.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230571", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230572.json b/public/organe/PO230572.json new file mode 100644 index 0000000..ff1593b --- /dev/null +++ b/public/organe/PO230572.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230572", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230573.json b/public/organe/PO230573.json new file mode 100644 index 0000000..6ca0c2b --- /dev/null +++ b/public/organe/PO230573.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230573", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230574.json b/public/organe/PO230574.json new file mode 100644 index 0000000..3c769c5 --- /dev/null +++ b/public/organe/PO230574.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230574", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230575.json b/public/organe/PO230575.json new file mode 100644 index 0000000..6bf3e58 --- /dev/null +++ b/public/organe/PO230575.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230575", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230576.json b/public/organe/PO230576.json new file mode 100644 index 0000000..e48b9a5 --- /dev/null +++ b/public/organe/PO230576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230576", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO230577.json b/public/organe/PO230577.json new file mode 100644 index 0000000..675f3fa --- /dev/null +++ b/public/organe/PO230577.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230577", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO230578.json b/public/organe/PO230578.json new file mode 100644 index 0000000..79aa78e --- /dev/null +++ b/public/organe/PO230578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230578", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230579.json b/public/organe/PO230579.json new file mode 100644 index 0000000..290157d --- /dev/null +++ b/public/organe/PO230579.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230579", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230580.json b/public/organe/PO230580.json new file mode 100644 index 0000000..43dfb1f --- /dev/null +++ b/public/organe/PO230580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230580", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230581.json b/public/organe/PO230581.json new file mode 100644 index 0000000..e3a718c --- /dev/null +++ b/public/organe/PO230581.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230581", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230582.json b/public/organe/PO230582.json new file mode 100644 index 0000000..296e868 --- /dev/null +++ b/public/organe/PO230582.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230582", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230583.json b/public/organe/PO230583.json new file mode 100644 index 0000000..4a7d7c5 --- /dev/null +++ b/public/organe/PO230583.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230583", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230584.json b/public/organe/PO230584.json new file mode 100644 index 0000000..3139f21 --- /dev/null +++ b/public/organe/PO230584.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230584", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230585.json b/public/organe/PO230585.json new file mode 100644 index 0000000..f561bc1 --- /dev/null +++ b/public/organe/PO230585.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230585", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230586.json b/public/organe/PO230586.json new file mode 100644 index 0000000..e2ac626 --- /dev/null +++ b/public/organe/PO230586.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230586", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230587.json b/public/organe/PO230587.json new file mode 100644 index 0000000..64c6337 --- /dev/null +++ b/public/organe/PO230587.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230587", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230588.json b/public/organe/PO230588.json new file mode 100644 index 0000000..6409fae --- /dev/null +++ b/public/organe/PO230588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230588", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO230589.json b/public/organe/PO230589.json new file mode 100644 index 0000000..bd14ec3 --- /dev/null +++ b/public/organe/PO230589.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230589", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO230590.json b/public/organe/PO230590.json new file mode 100644 index 0000000..dcc12bf --- /dev/null +++ b/public/organe/PO230590.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230590", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO230591.json b/public/organe/PO230591.json new file mode 100644 index 0000000..651cf43 --- /dev/null +++ b/public/organe/PO230591.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230591", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO230592.json b/public/organe/PO230592.json new file mode 100644 index 0000000..7a1fd20 --- /dev/null +++ b/public/organe/PO230592.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230592", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO230593.json b/public/organe/PO230593.json new file mode 100644 index 0000000..a252abf --- /dev/null +++ b/public/organe/PO230593.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230593", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO230594.json b/public/organe/PO230594.json new file mode 100644 index 0000000..250da4d --- /dev/null +++ b/public/organe/PO230594.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230594", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO230595.json b/public/organe/PO230595.json new file mode 100644 index 0000000..53dce8c --- /dev/null +++ b/public/organe/PO230595.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230595", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO230596.json b/public/organe/PO230596.json new file mode 100644 index 0000000..fb04209 --- /dev/null +++ b/public/organe/PO230596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230596", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO230597.json b/public/organe/PO230597.json new file mode 100644 index 0000000..1bafe0f --- /dev/null +++ b/public/organe/PO230597.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230597", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO230598.json b/public/organe/PO230598.json new file mode 100644 index 0000000..227fe18 --- /dev/null +++ b/public/organe/PO230598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230598", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO230599.json b/public/organe/PO230599.json new file mode 100644 index 0000000..cf1ca72 --- /dev/null +++ b/public/organe/PO230599.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230599", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO230600.json b/public/organe/PO230600.json new file mode 100644 index 0000000..b1da288 --- /dev/null +++ b/public/organe/PO230600.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230600", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO230601.json b/public/organe/PO230601.json new file mode 100644 index 0000000..4205a18 --- /dev/null +++ b/public/organe/PO230601.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230601", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO230602.json b/public/organe/PO230602.json new file mode 100644 index 0000000..0d58f6b --- /dev/null +++ b/public/organe/PO230602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230602", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO230603.json b/public/organe/PO230603.json new file mode 100644 index 0000000..1f4fe8e --- /dev/null +++ b/public/organe/PO230603.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230603", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO230604.json b/public/organe/PO230604.json new file mode 100644 index 0000000..61f8982 --- /dev/null +++ b/public/organe/PO230604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230604", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO230605.json b/public/organe/PO230605.json new file mode 100644 index 0000000..dab9191 --- /dev/null +++ b/public/organe/PO230605.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230605", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO230606.json b/public/organe/PO230606.json new file mode 100644 index 0000000..0136625 --- /dev/null +++ b/public/organe/PO230606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230606", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230607.json b/public/organe/PO230607.json new file mode 100644 index 0000000..0768bf8 --- /dev/null +++ b/public/organe/PO230607.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230607", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230608.json b/public/organe/PO230608.json new file mode 100644 index 0000000..094795e --- /dev/null +++ b/public/organe/PO230608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230608", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230609.json b/public/organe/PO230609.json new file mode 100644 index 0000000..37f83f7 --- /dev/null +++ b/public/organe/PO230609.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230609", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230610.json b/public/organe/PO230610.json new file mode 100644 index 0000000..fdb794f --- /dev/null +++ b/public/organe/PO230610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230610", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230611.json b/public/organe/PO230611.json new file mode 100644 index 0000000..4872c54 --- /dev/null +++ b/public/organe/PO230611.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230611", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230612.json b/public/organe/PO230612.json new file mode 100644 index 0000000..0e68595 --- /dev/null +++ b/public/organe/PO230612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230612", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230613.json b/public/organe/PO230613.json new file mode 100644 index 0000000..72cbb0d --- /dev/null +++ b/public/organe/PO230613.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230613", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230614.json b/public/organe/PO230614.json new file mode 100644 index 0000000..95868c8 --- /dev/null +++ b/public/organe/PO230614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230614", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230615.json b/public/organe/PO230615.json new file mode 100644 index 0000000..3447ff4 --- /dev/null +++ b/public/organe/PO230615.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230615", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230616.json b/public/organe/PO230616.json new file mode 100644 index 0000000..25060aa --- /dev/null +++ b/public/organe/PO230616.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230616", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230617.json b/public/organe/PO230617.json new file mode 100644 index 0000000..0d933f3 --- /dev/null +++ b/public/organe/PO230617.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230617", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230618.json b/public/organe/PO230618.json new file mode 100644 index 0000000..1719090 --- /dev/null +++ b/public/organe/PO230618.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230618", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230619.json b/public/organe/PO230619.json new file mode 100644 index 0000000..952d13c --- /dev/null +++ b/public/organe/PO230619.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230619", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230620.json b/public/organe/PO230620.json new file mode 100644 index 0000000..3bf5ca3 --- /dev/null +++ b/public/organe/PO230620.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230620", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO230621.json b/public/organe/PO230621.json new file mode 100644 index 0000000..79800df --- /dev/null +++ b/public/organe/PO230621.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230621", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO230622.json b/public/organe/PO230622.json new file mode 100644 index 0000000..11e3117 --- /dev/null +++ b/public/organe/PO230622.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230622", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO230623.json b/public/organe/PO230623.json new file mode 100644 index 0000000..090ffcd --- /dev/null +++ b/public/organe/PO230623.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230623", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO230624.json b/public/organe/PO230624.json new file mode 100644 index 0000000..2fc914a --- /dev/null +++ b/public/organe/PO230624.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230624", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO230625.json b/public/organe/PO230625.json new file mode 100644 index 0000000..95c9c36 --- /dev/null +++ b/public/organe/PO230625.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230625", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO230626.json b/public/organe/PO230626.json new file mode 100644 index 0000000..67a5bea --- /dev/null +++ b/public/organe/PO230626.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230626", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO230627.json b/public/organe/PO230627.json new file mode 100644 index 0000000..8d80572 --- /dev/null +++ b/public/organe/PO230627.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230627", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO230628.json b/public/organe/PO230628.json new file mode 100644 index 0000000..7fd6179 --- /dev/null +++ b/public/organe/PO230628.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230628", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO230629.json b/public/organe/PO230629.json new file mode 100644 index 0000000..6ea95f3 --- /dev/null +++ b/public/organe/PO230629.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230629", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230630.json b/public/organe/PO230630.json new file mode 100644 index 0000000..9707b41 --- /dev/null +++ b/public/organe/PO230630.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230630", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230631.json b/public/organe/PO230631.json new file mode 100644 index 0000000..21abe38 --- /dev/null +++ b/public/organe/PO230631.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230631", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230632.json b/public/organe/PO230632.json new file mode 100644 index 0000000..c300973 --- /dev/null +++ b/public/organe/PO230632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230632", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230633.json b/public/organe/PO230633.json new file mode 100644 index 0000000..42ac9dd --- /dev/null +++ b/public/organe/PO230633.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230633", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230634.json b/public/organe/PO230634.json new file mode 100644 index 0000000..828d815 --- /dev/null +++ b/public/organe/PO230634.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230634", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230635.json b/public/organe/PO230635.json new file mode 100644 index 0000000..8462e1a --- /dev/null +++ b/public/organe/PO230635.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230635", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230636.json b/public/organe/PO230636.json new file mode 100644 index 0000000..69a4abf --- /dev/null +++ b/public/organe/PO230636.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230636", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230637.json b/public/organe/PO230637.json new file mode 100644 index 0000000..c90f0fc --- /dev/null +++ b/public/organe/PO230637.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230637", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230638.json b/public/organe/PO230638.json new file mode 100644 index 0000000..3d93b6c --- /dev/null +++ b/public/organe/PO230638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230638", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230639.json b/public/organe/PO230639.json new file mode 100644 index 0000000..28353ac --- /dev/null +++ b/public/organe/PO230639.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230639", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230640.json b/public/organe/PO230640.json new file mode 100644 index 0000000..7fb6d1d --- /dev/null +++ b/public/organe/PO230640.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230640", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230641.json b/public/organe/PO230641.json new file mode 100644 index 0000000..8b817ae --- /dev/null +++ b/public/organe/PO230641.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230641", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230642.json b/public/organe/PO230642.json new file mode 100644 index 0000000..653277c --- /dev/null +++ b/public/organe/PO230642.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230642", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230643.json b/public/organe/PO230643.json new file mode 100644 index 0000000..111f861 --- /dev/null +++ b/public/organe/PO230643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230643", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230644.json b/public/organe/PO230644.json new file mode 100644 index 0000000..8f15649 --- /dev/null +++ b/public/organe/PO230644.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230644", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230645.json b/public/organe/PO230645.json new file mode 100644 index 0000000..8277dff --- /dev/null +++ b/public/organe/PO230645.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230645", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230646.json b/public/organe/PO230646.json new file mode 100644 index 0000000..6dd9649 --- /dev/null +++ b/public/organe/PO230646.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230646", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230647.json b/public/organe/PO230647.json new file mode 100644 index 0000000..1b07987 --- /dev/null +++ b/public/organe/PO230647.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230647", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO230648.json b/public/organe/PO230648.json new file mode 100644 index 0000000..22ed8a2 --- /dev/null +++ b/public/organe/PO230648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230648", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO230649.json b/public/organe/PO230649.json new file mode 100644 index 0000000..5e2971d --- /dev/null +++ b/public/organe/PO230649.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230649", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO230650.json b/public/organe/PO230650.json new file mode 100644 index 0000000..31e563e --- /dev/null +++ b/public/organe/PO230650.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230650", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO230651.json b/public/organe/PO230651.json new file mode 100644 index 0000000..c809a92 --- /dev/null +++ b/public/organe/PO230651.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230651", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO230652.json b/public/organe/PO230652.json new file mode 100644 index 0000000..8f64e6e --- /dev/null +++ b/public/organe/PO230652.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230652", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO230653.json b/public/organe/PO230653.json new file mode 100644 index 0000000..5bdc84c --- /dev/null +++ b/public/organe/PO230653.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230653", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO230654.json b/public/organe/PO230654.json new file mode 100644 index 0000000..402e849 --- /dev/null +++ b/public/organe/PO230654.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230654", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO230655.json b/public/organe/PO230655.json new file mode 100644 index 0000000..b423948 --- /dev/null +++ b/public/organe/PO230655.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230655", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230656.json b/public/organe/PO230656.json new file mode 100644 index 0000000..fbd38ab --- /dev/null +++ b/public/organe/PO230656.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230656", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230657.json b/public/organe/PO230657.json new file mode 100644 index 0000000..7623235 --- /dev/null +++ b/public/organe/PO230657.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230657", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230658.json b/public/organe/PO230658.json new file mode 100644 index 0000000..2298617 --- /dev/null +++ b/public/organe/PO230658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230658", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230659.json b/public/organe/PO230659.json new file mode 100644 index 0000000..0532386 --- /dev/null +++ b/public/organe/PO230659.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230659", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO230660.json b/public/organe/PO230660.json new file mode 100644 index 0000000..6ff1fa8 --- /dev/null +++ b/public/organe/PO230660.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230660", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230661.json b/public/organe/PO230661.json new file mode 100644 index 0000000..61b6244 --- /dev/null +++ b/public/organe/PO230661.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230661", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230662.json b/public/organe/PO230662.json new file mode 100644 index 0000000..95e08c2 --- /dev/null +++ b/public/organe/PO230662.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230662", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230663.json b/public/organe/PO230663.json new file mode 100644 index 0000000..caf040f --- /dev/null +++ b/public/organe/PO230663.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230663", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230664.json b/public/organe/PO230664.json new file mode 100644 index 0000000..542b768 --- /dev/null +++ b/public/organe/PO230664.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230664", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230665.json b/public/organe/PO230665.json new file mode 100644 index 0000000..0120276 --- /dev/null +++ b/public/organe/PO230665.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230665", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230666.json b/public/organe/PO230666.json new file mode 100644 index 0000000..8ab1051 --- /dev/null +++ b/public/organe/PO230666.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230666", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230667.json b/public/organe/PO230667.json new file mode 100644 index 0000000..063311a --- /dev/null +++ b/public/organe/PO230667.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230667", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO230668.json b/public/organe/PO230668.json new file mode 100644 index 0000000..6cb7df6 --- /dev/null +++ b/public/organe/PO230668.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230668", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO230669.json b/public/organe/PO230669.json new file mode 100644 index 0000000..0feae6a --- /dev/null +++ b/public/organe/PO230669.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230669", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO230670.json b/public/organe/PO230670.json new file mode 100644 index 0000000..f9639b8 --- /dev/null +++ b/public/organe/PO230670.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230670", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO230671.json b/public/organe/PO230671.json new file mode 100644 index 0000000..5f52835 --- /dev/null +++ b/public/organe/PO230671.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230671", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO230672.json b/public/organe/PO230672.json new file mode 100644 index 0000000..f9f87c7 --- /dev/null +++ b/public/organe/PO230672.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230672", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230673.json b/public/organe/PO230673.json new file mode 100644 index 0000000..a1cb830 --- /dev/null +++ b/public/organe/PO230673.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230673", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230674.json b/public/organe/PO230674.json new file mode 100644 index 0000000..99a8c16 --- /dev/null +++ b/public/organe/PO230674.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230674", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230675.json b/public/organe/PO230675.json new file mode 100644 index 0000000..c47d5a2 --- /dev/null +++ b/public/organe/PO230675.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230675", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230676.json b/public/organe/PO230676.json new file mode 100644 index 0000000..bde10d0 --- /dev/null +++ b/public/organe/PO230676.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230676", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230677.json b/public/organe/PO230677.json new file mode 100644 index 0000000..2338483 --- /dev/null +++ b/public/organe/PO230677.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230677", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230678.json b/public/organe/PO230678.json new file mode 100644 index 0000000..97b0492 --- /dev/null +++ b/public/organe/PO230678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230678", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230679.json b/public/organe/PO230679.json new file mode 100644 index 0000000..19f4b3f --- /dev/null +++ b/public/organe/PO230679.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230679", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230680.json b/public/organe/PO230680.json new file mode 100644 index 0000000..041da08 --- /dev/null +++ b/public/organe/PO230680.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230680", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO230681.json b/public/organe/PO230681.json new file mode 100644 index 0000000..ba229dc --- /dev/null +++ b/public/organe/PO230681.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230681", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO230682.json b/public/organe/PO230682.json new file mode 100644 index 0000000..05c8788 --- /dev/null +++ b/public/organe/PO230682.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230682", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO230683.json b/public/organe/PO230683.json new file mode 100644 index 0000000..fc6944e --- /dev/null +++ b/public/organe/PO230683.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230683", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230684.json b/public/organe/PO230684.json new file mode 100644 index 0000000..8a6082f --- /dev/null +++ b/public/organe/PO230684.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230684", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230685.json b/public/organe/PO230685.json new file mode 100644 index 0000000..9d95261 --- /dev/null +++ b/public/organe/PO230685.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230685", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230686.json b/public/organe/PO230686.json new file mode 100644 index 0000000..aa784cf --- /dev/null +++ b/public/organe/PO230686.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230686", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230687.json b/public/organe/PO230687.json new file mode 100644 index 0000000..22bb1af --- /dev/null +++ b/public/organe/PO230687.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230687", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230688.json b/public/organe/PO230688.json new file mode 100644 index 0000000..cc7dbf8 --- /dev/null +++ b/public/organe/PO230688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230688", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230689.json b/public/organe/PO230689.json new file mode 100644 index 0000000..7667b0b --- /dev/null +++ b/public/organe/PO230689.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230689", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230690.json b/public/organe/PO230690.json new file mode 100644 index 0000000..172d187 --- /dev/null +++ b/public/organe/PO230690.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230690", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO230691.json b/public/organe/PO230691.json new file mode 100644 index 0000000..112b5eb --- /dev/null +++ b/public/organe/PO230691.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230691", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO230692.json b/public/organe/PO230692.json new file mode 100644 index 0000000..435ea02 --- /dev/null +++ b/public/organe/PO230692.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230692", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO230693.json b/public/organe/PO230693.json new file mode 100644 index 0000000..9138c24 --- /dev/null +++ b/public/organe/PO230693.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230693", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO230694.json b/public/organe/PO230694.json new file mode 100644 index 0000000..d74820f --- /dev/null +++ b/public/organe/PO230694.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230694", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO230695.json b/public/organe/PO230695.json new file mode 100644 index 0000000..ef6ec02 --- /dev/null +++ b/public/organe/PO230695.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230695", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO230696.json b/public/organe/PO230696.json new file mode 100644 index 0000000..6f16efb --- /dev/null +++ b/public/organe/PO230696.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230696", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO230697.json b/public/organe/PO230697.json new file mode 100644 index 0000000..1bb6790 --- /dev/null +++ b/public/organe/PO230697.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230697", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO230698.json b/public/organe/PO230698.json new file mode 100644 index 0000000..d62dffa --- /dev/null +++ b/public/organe/PO230698.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230698", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230699.json b/public/organe/PO230699.json new file mode 100644 index 0000000..40c323d --- /dev/null +++ b/public/organe/PO230699.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230699", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230700.json b/public/organe/PO230700.json new file mode 100644 index 0000000..fd90a50 --- /dev/null +++ b/public/organe/PO230700.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230700", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230701.json b/public/organe/PO230701.json new file mode 100644 index 0000000..a1fb163 --- /dev/null +++ b/public/organe/PO230701.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230701", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230702.json b/public/organe/PO230702.json new file mode 100644 index 0000000..3069f75 --- /dev/null +++ b/public/organe/PO230702.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230702", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230703.json b/public/organe/PO230703.json new file mode 100644 index 0000000..cad3f73 --- /dev/null +++ b/public/organe/PO230703.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230703", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230704.json b/public/organe/PO230704.json new file mode 100644 index 0000000..2a62747 --- /dev/null +++ b/public/organe/PO230704.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230704", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230705.json b/public/organe/PO230705.json new file mode 100644 index 0000000..4fa5cee --- /dev/null +++ b/public/organe/PO230705.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230705", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230706.json b/public/organe/PO230706.json new file mode 100644 index 0000000..b210412 --- /dev/null +++ b/public/organe/PO230706.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230706", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230707.json b/public/organe/PO230707.json new file mode 100644 index 0000000..1641dae --- /dev/null +++ b/public/organe/PO230707.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230707", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO230708.json b/public/organe/PO230708.json new file mode 100644 index 0000000..0a0a6fb --- /dev/null +++ b/public/organe/PO230708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230708", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO230709.json b/public/organe/PO230709.json new file mode 100644 index 0000000..6743072 --- /dev/null +++ b/public/organe/PO230709.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230709", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO230710.json b/public/organe/PO230710.json new file mode 100644 index 0000000..0f674df --- /dev/null +++ b/public/organe/PO230710.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230710", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO230711.json b/public/organe/PO230711.json new file mode 100644 index 0000000..dbb36be --- /dev/null +++ b/public/organe/PO230711.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230711", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230712.json b/public/organe/PO230712.json new file mode 100644 index 0000000..45dbf4b --- /dev/null +++ b/public/organe/PO230712.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230712", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230713.json b/public/organe/PO230713.json new file mode 100644 index 0000000..2f25ba7 --- /dev/null +++ b/public/organe/PO230713.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230713", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230714.json b/public/organe/PO230714.json new file mode 100644 index 0000000..aaf85db --- /dev/null +++ b/public/organe/PO230714.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230714", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230715.json b/public/organe/PO230715.json new file mode 100644 index 0000000..57a9dfd --- /dev/null +++ b/public/organe/PO230715.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230715", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230716.json b/public/organe/PO230716.json new file mode 100644 index 0000000..dee0da1 --- /dev/null +++ b/public/organe/PO230716.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230716", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230717.json b/public/organe/PO230717.json new file mode 100644 index 0000000..58dd209 --- /dev/null +++ b/public/organe/PO230717.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230717", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230718.json b/public/organe/PO230718.json new file mode 100644 index 0000000..bdc471b --- /dev/null +++ b/public/organe/PO230718.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230718", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230719.json b/public/organe/PO230719.json new file mode 100644 index 0000000..524b297 --- /dev/null +++ b/public/organe/PO230719.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230719", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230720.json b/public/organe/PO230720.json new file mode 100644 index 0000000..f635d15 --- /dev/null +++ b/public/organe/PO230720.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230720", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230721.json b/public/organe/PO230721.json new file mode 100644 index 0000000..3d97397 --- /dev/null +++ b/public/organe/PO230721.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230721", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230722.json b/public/organe/PO230722.json new file mode 100644 index 0000000..130063a --- /dev/null +++ b/public/organe/PO230722.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230722", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230723.json b/public/organe/PO230723.json new file mode 100644 index 0000000..0f8d338 --- /dev/null +++ b/public/organe/PO230723.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230723", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230724.json b/public/organe/PO230724.json new file mode 100644 index 0000000..599d7cf --- /dev/null +++ b/public/organe/PO230724.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230724", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230725.json b/public/organe/PO230725.json new file mode 100644 index 0000000..2dbc4e2 --- /dev/null +++ b/public/organe/PO230725.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230725", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230726.json b/public/organe/PO230726.json new file mode 100644 index 0000000..c90c155 --- /dev/null +++ b/public/organe/PO230726.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230726", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230727.json b/public/organe/PO230727.json new file mode 100644 index 0000000..5023134 --- /dev/null +++ b/public/organe/PO230727.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230727", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230728.json b/public/organe/PO230728.json new file mode 100644 index 0000000..a0e3014 --- /dev/null +++ b/public/organe/PO230728.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230728", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230729.json b/public/organe/PO230729.json new file mode 100644 index 0000000..2b7e833 --- /dev/null +++ b/public/organe/PO230729.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230729", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230730.json b/public/organe/PO230730.json new file mode 100644 index 0000000..3ccc496 --- /dev/null +++ b/public/organe/PO230730.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230730", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230731.json b/public/organe/PO230731.json new file mode 100644 index 0000000..d8c6801 --- /dev/null +++ b/public/organe/PO230731.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230731", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230732.json b/public/organe/PO230732.json new file mode 100644 index 0000000..3ee22e1 --- /dev/null +++ b/public/organe/PO230732.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230732", "codeType": "CIRCONSCRIPTION", "libelle": "22\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b022\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "22", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230733.json b/public/organe/PO230733.json new file mode 100644 index 0000000..b5a3adc --- /dev/null +++ b/public/organe/PO230733.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230733", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230734.json b/public/organe/PO230734.json new file mode 100644 index 0000000..cdf4616 --- /dev/null +++ b/public/organe/PO230734.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230734", "codeType": "CIRCONSCRIPTION", "libelle": "24\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b024\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "24", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO230735.json b/public/organe/PO230735.json new file mode 100644 index 0000000..74698b8 --- /dev/null +++ b/public/organe/PO230735.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230735", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230736.json b/public/organe/PO230736.json new file mode 100644 index 0000000..b379d46 --- /dev/null +++ b/public/organe/PO230736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230736", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230737.json b/public/organe/PO230737.json new file mode 100644 index 0000000..c0d4018 --- /dev/null +++ b/public/organe/PO230737.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230737", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230738.json b/public/organe/PO230738.json new file mode 100644 index 0000000..e71b0c5 --- /dev/null +++ b/public/organe/PO230738.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230738", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230739.json b/public/organe/PO230739.json new file mode 100644 index 0000000..f1bc9f8 --- /dev/null +++ b/public/organe/PO230739.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230739", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230740.json b/public/organe/PO230740.json new file mode 100644 index 0000000..bfde26e --- /dev/null +++ b/public/organe/PO230740.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230740", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230741.json b/public/organe/PO230741.json new file mode 100644 index 0000000..f8bb6a5 --- /dev/null +++ b/public/organe/PO230741.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230741", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230742.json b/public/organe/PO230742.json new file mode 100644 index 0000000..48af756 --- /dev/null +++ b/public/organe/PO230742.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230742", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO230743.json b/public/organe/PO230743.json new file mode 100644 index 0000000..8fc01d4 --- /dev/null +++ b/public/organe/PO230743.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230743", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO230744.json b/public/organe/PO230744.json new file mode 100644 index 0000000..5d2cc39 --- /dev/null +++ b/public/organe/PO230744.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230744", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO230745.json b/public/organe/PO230745.json new file mode 100644 index 0000000..6669664 --- /dev/null +++ b/public/organe/PO230745.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230745", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230746.json b/public/organe/PO230746.json new file mode 100644 index 0000000..75d7554 --- /dev/null +++ b/public/organe/PO230746.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230746", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230747.json b/public/organe/PO230747.json new file mode 100644 index 0000000..bc6f48a --- /dev/null +++ b/public/organe/PO230747.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230747", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230748.json b/public/organe/PO230748.json new file mode 100644 index 0000000..4f8cacf --- /dev/null +++ b/public/organe/PO230748.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230748", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230749.json b/public/organe/PO230749.json new file mode 100644 index 0000000..03e3ddb --- /dev/null +++ b/public/organe/PO230749.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230749", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230750.json b/public/organe/PO230750.json new file mode 100644 index 0000000..0c3adf8 --- /dev/null +++ b/public/organe/PO230750.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230750", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230751.json b/public/organe/PO230751.json new file mode 100644 index 0000000..269ee82 --- /dev/null +++ b/public/organe/PO230751.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230751", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230752.json b/public/organe/PO230752.json new file mode 100644 index 0000000..04ac091 --- /dev/null +++ b/public/organe/PO230752.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230752", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230753.json b/public/organe/PO230753.json new file mode 100644 index 0000000..707a2f3 --- /dev/null +++ b/public/organe/PO230753.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230753", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230754.json b/public/organe/PO230754.json new file mode 100644 index 0000000..45dd4ab --- /dev/null +++ b/public/organe/PO230754.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230754", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230755.json b/public/organe/PO230755.json new file mode 100644 index 0000000..c0d840a --- /dev/null +++ b/public/organe/PO230755.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230755", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230756.json b/public/organe/PO230756.json new file mode 100644 index 0000000..132ee4f --- /dev/null +++ b/public/organe/PO230756.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230756", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230757.json b/public/organe/PO230757.json new file mode 100644 index 0000000..f81e41f --- /dev/null +++ b/public/organe/PO230757.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230757", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230758.json b/public/organe/PO230758.json new file mode 100644 index 0000000..e53e4ed --- /dev/null +++ b/public/organe/PO230758.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230758", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO230759.json b/public/organe/PO230759.json new file mode 100644 index 0000000..c7c68ae --- /dev/null +++ b/public/organe/PO230759.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230759", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230760.json b/public/organe/PO230760.json new file mode 100644 index 0000000..0e5b2b6 --- /dev/null +++ b/public/organe/PO230760.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230760", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230761.json b/public/organe/PO230761.json new file mode 100644 index 0000000..eb62d27 --- /dev/null +++ b/public/organe/PO230761.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230761", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230762.json b/public/organe/PO230762.json new file mode 100644 index 0000000..4cafc95 --- /dev/null +++ b/public/organe/PO230762.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230762", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230763.json b/public/organe/PO230763.json new file mode 100644 index 0000000..51aa744 --- /dev/null +++ b/public/organe/PO230763.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230763", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230764.json b/public/organe/PO230764.json new file mode 100644 index 0000000..6f72bc1 --- /dev/null +++ b/public/organe/PO230764.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230764", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO230765.json b/public/organe/PO230765.json new file mode 100644 index 0000000..7a287df --- /dev/null +++ b/public/organe/PO230765.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230765", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO230766.json b/public/organe/PO230766.json new file mode 100644 index 0000000..37b9d07 --- /dev/null +++ b/public/organe/PO230766.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230766", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO230767.json b/public/organe/PO230767.json new file mode 100644 index 0000000..d92121c --- /dev/null +++ b/public/organe/PO230767.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230767", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO230768.json b/public/organe/PO230768.json new file mode 100644 index 0000000..c112414 --- /dev/null +++ b/public/organe/PO230768.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230768", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO230769.json b/public/organe/PO230769.json new file mode 100644 index 0000000..1759a6a --- /dev/null +++ b/public/organe/PO230769.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230769", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO230770.json b/public/organe/PO230770.json new file mode 100644 index 0000000..65e6f66 --- /dev/null +++ b/public/organe/PO230770.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230770", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO230771.json b/public/organe/PO230771.json new file mode 100644 index 0000000..da29d39 --- /dev/null +++ b/public/organe/PO230771.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230771", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO230772.json b/public/organe/PO230772.json new file mode 100644 index 0000000..37717cb --- /dev/null +++ b/public/organe/PO230772.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230772", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO230773.json b/public/organe/PO230773.json new file mode 100644 index 0000000..fd2e791 --- /dev/null +++ b/public/organe/PO230773.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230773", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO230774.json b/public/organe/PO230774.json new file mode 100644 index 0000000..e757b43 --- /dev/null +++ b/public/organe/PO230774.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230774", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO230775.json b/public/organe/PO230775.json new file mode 100644 index 0000000..0de1d1b --- /dev/null +++ b/public/organe/PO230775.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230775", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO230776.json b/public/organe/PO230776.json new file mode 100644 index 0000000..3d2603a --- /dev/null +++ b/public/organe/PO230776.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230776", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO230777.json b/public/organe/PO230777.json new file mode 100644 index 0000000..b362c68 --- /dev/null +++ b/public/organe/PO230777.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230777", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO230778.json b/public/organe/PO230778.json new file mode 100644 index 0000000..48f8343 --- /dev/null +++ b/public/organe/PO230778.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230778", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230779.json b/public/organe/PO230779.json new file mode 100644 index 0000000..6d59fd5 --- /dev/null +++ b/public/organe/PO230779.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230779", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230780.json b/public/organe/PO230780.json new file mode 100644 index 0000000..ec5d8c0 --- /dev/null +++ b/public/organe/PO230780.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230780", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230781.json b/public/organe/PO230781.json new file mode 100644 index 0000000..1aec756 --- /dev/null +++ b/public/organe/PO230781.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230781", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230782.json b/public/organe/PO230782.json new file mode 100644 index 0000000..6fc7166 --- /dev/null +++ b/public/organe/PO230782.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230782", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230783.json b/public/organe/PO230783.json new file mode 100644 index 0000000..1b96c92 --- /dev/null +++ b/public/organe/PO230783.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230783", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230784.json b/public/organe/PO230784.json new file mode 100644 index 0000000..b0ff188 --- /dev/null +++ b/public/organe/PO230784.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230784", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230785.json b/public/organe/PO230785.json new file mode 100644 index 0000000..fa048f5 --- /dev/null +++ b/public/organe/PO230785.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230785", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230786.json b/public/organe/PO230786.json new file mode 100644 index 0000000..af30382 --- /dev/null +++ b/public/organe/PO230786.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230786", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230787.json b/public/organe/PO230787.json new file mode 100644 index 0000000..f62f80c --- /dev/null +++ b/public/organe/PO230787.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230787", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230788.json b/public/organe/PO230788.json new file mode 100644 index 0000000..f0a2d35 --- /dev/null +++ b/public/organe/PO230788.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230788", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230789.json b/public/organe/PO230789.json new file mode 100644 index 0000000..5895391 --- /dev/null +++ b/public/organe/PO230789.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230789", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230790.json b/public/organe/PO230790.json new file mode 100644 index 0000000..02eda64 --- /dev/null +++ b/public/organe/PO230790.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230790", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230791.json b/public/organe/PO230791.json new file mode 100644 index 0000000..d221299 --- /dev/null +++ b/public/organe/PO230791.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230791", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230792.json b/public/organe/PO230792.json new file mode 100644 index 0000000..a051f7a --- /dev/null +++ b/public/organe/PO230792.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230792", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230793.json b/public/organe/PO230793.json new file mode 100644 index 0000000..d302ada --- /dev/null +++ b/public/organe/PO230793.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230793", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO230794.json b/public/organe/PO230794.json new file mode 100644 index 0000000..220de7f --- /dev/null +++ b/public/organe/PO230794.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230794", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230795.json b/public/organe/PO230795.json new file mode 100644 index 0000000..fe95077 --- /dev/null +++ b/public/organe/PO230795.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230795", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230796.json b/public/organe/PO230796.json new file mode 100644 index 0000000..d508813 --- /dev/null +++ b/public/organe/PO230796.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230796", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230797.json b/public/organe/PO230797.json new file mode 100644 index 0000000..a2e29bf --- /dev/null +++ b/public/organe/PO230797.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230797", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230798.json b/public/organe/PO230798.json new file mode 100644 index 0000000..bd93e91 --- /dev/null +++ b/public/organe/PO230798.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230798", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230799.json b/public/organe/PO230799.json new file mode 100644 index 0000000..97cdcb7 --- /dev/null +++ b/public/organe/PO230799.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230799", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230800.json b/public/organe/PO230800.json new file mode 100644 index 0000000..a755bc1 --- /dev/null +++ b/public/organe/PO230800.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230800", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230801.json b/public/organe/PO230801.json new file mode 100644 index 0000000..a30f73c --- /dev/null +++ b/public/organe/PO230801.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230801", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230802.json b/public/organe/PO230802.json new file mode 100644 index 0000000..4afb06e --- /dev/null +++ b/public/organe/PO230802.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230802", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230803.json b/public/organe/PO230803.json new file mode 100644 index 0000000..abd5b3a --- /dev/null +++ b/public/organe/PO230803.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230803", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230804.json b/public/organe/PO230804.json new file mode 100644 index 0000000..e248868 --- /dev/null +++ b/public/organe/PO230804.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230804", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230805.json b/public/organe/PO230805.json new file mode 100644 index 0000000..cbeb229 --- /dev/null +++ b/public/organe/PO230805.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230805", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230806.json b/public/organe/PO230806.json new file mode 100644 index 0000000..73eeb0e --- /dev/null +++ b/public/organe/PO230806.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230806", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230807.json b/public/organe/PO230807.json new file mode 100644 index 0000000..7ab7e5b --- /dev/null +++ b/public/organe/PO230807.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230807", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230808.json b/public/organe/PO230808.json new file mode 100644 index 0000000..f0823dc --- /dev/null +++ b/public/organe/PO230808.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230808", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230809.json b/public/organe/PO230809.json new file mode 100644 index 0000000..f2cd345 --- /dev/null +++ b/public/organe/PO230809.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230809", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230810.json b/public/organe/PO230810.json new file mode 100644 index 0000000..d5c7058 --- /dev/null +++ b/public/organe/PO230810.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230810", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO230811.json b/public/organe/PO230811.json new file mode 100644 index 0000000..7a2bc8a --- /dev/null +++ b/public/organe/PO230811.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230811", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230812.json b/public/organe/PO230812.json new file mode 100644 index 0000000..e1e74f3 --- /dev/null +++ b/public/organe/PO230812.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230812", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230813.json b/public/organe/PO230813.json new file mode 100644 index 0000000..fdcc14d --- /dev/null +++ b/public/organe/PO230813.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230813", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230814.json b/public/organe/PO230814.json new file mode 100644 index 0000000..abe3f79 --- /dev/null +++ b/public/organe/PO230814.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230814", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230815.json b/public/organe/PO230815.json new file mode 100644 index 0000000..acf9cc6 --- /dev/null +++ b/public/organe/PO230815.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230815", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230816.json b/public/organe/PO230816.json new file mode 100644 index 0000000..c2ee520 --- /dev/null +++ b/public/organe/PO230816.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230816", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO230817.json b/public/organe/PO230817.json new file mode 100644 index 0000000..543dc55 --- /dev/null +++ b/public/organe/PO230817.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230817", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO230818.json b/public/organe/PO230818.json new file mode 100644 index 0000000..ebf4b63 --- /dev/null +++ b/public/organe/PO230818.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230818", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO230819.json b/public/organe/PO230819.json new file mode 100644 index 0000000..11587f1 --- /dev/null +++ b/public/organe/PO230819.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230819", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO230820.json b/public/organe/PO230820.json new file mode 100644 index 0000000..2ed50ca --- /dev/null +++ b/public/organe/PO230820.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230820", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO230821.json b/public/organe/PO230821.json new file mode 100644 index 0000000..4e1ba14 --- /dev/null +++ b/public/organe/PO230821.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230821", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO230822.json b/public/organe/PO230822.json new file mode 100644 index 0000000..8c45e39 --- /dev/null +++ b/public/organe/PO230822.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230822", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO230823.json b/public/organe/PO230823.json new file mode 100644 index 0000000..d95e91b --- /dev/null +++ b/public/organe/PO230823.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230823", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO230824.json b/public/organe/PO230824.json new file mode 100644 index 0000000..c8d256b --- /dev/null +++ b/public/organe/PO230824.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230824", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO230825.json b/public/organe/PO230825.json new file mode 100644 index 0000000..0ec6a65 --- /dev/null +++ b/public/organe/PO230825.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230825", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO230826.json b/public/organe/PO230826.json new file mode 100644 index 0000000..0ab0b49 --- /dev/null +++ b/public/organe/PO230826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230826", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO230827.json b/public/organe/PO230827.json new file mode 100644 index 0000000..9bb799c --- /dev/null +++ b/public/organe/PO230827.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230827", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO230828.json b/public/organe/PO230828.json new file mode 100644 index 0000000..28bcefc --- /dev/null +++ b/public/organe/PO230828.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230828", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO230829.json b/public/organe/PO230829.json new file mode 100644 index 0000000..5243fc1 --- /dev/null +++ b/public/organe/PO230829.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230829", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO230830.json b/public/organe/PO230830.json new file mode 100644 index 0000000..0a12d7e --- /dev/null +++ b/public/organe/PO230830.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230830", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230831.json b/public/organe/PO230831.json new file mode 100644 index 0000000..78482da --- /dev/null +++ b/public/organe/PO230831.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230831", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230832.json b/public/organe/PO230832.json new file mode 100644 index 0000000..46176da --- /dev/null +++ b/public/organe/PO230832.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230832", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230833.json b/public/organe/PO230833.json new file mode 100644 index 0000000..9452347 --- /dev/null +++ b/public/organe/PO230833.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230833", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230834.json b/public/organe/PO230834.json new file mode 100644 index 0000000..5e0c86f --- /dev/null +++ b/public/organe/PO230834.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230834", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230835.json b/public/organe/PO230835.json new file mode 100644 index 0000000..b8f3a91 --- /dev/null +++ b/public/organe/PO230835.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230835", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230836.json b/public/organe/PO230836.json new file mode 100644 index 0000000..14e24d3 --- /dev/null +++ b/public/organe/PO230836.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230836", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230837.json b/public/organe/PO230837.json new file mode 100644 index 0000000..186a594 --- /dev/null +++ b/public/organe/PO230837.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230837", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230838.json b/public/organe/PO230838.json new file mode 100644 index 0000000..ec35c2e --- /dev/null +++ b/public/organe/PO230838.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230838", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230839.json b/public/organe/PO230839.json new file mode 100644 index 0000000..720317b --- /dev/null +++ b/public/organe/PO230839.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230839", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230840.json b/public/organe/PO230840.json new file mode 100644 index 0000000..797085e --- /dev/null +++ b/public/organe/PO230840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230840", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230841.json b/public/organe/PO230841.json new file mode 100644 index 0000000..c9c30dc --- /dev/null +++ b/public/organe/PO230841.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230841", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230842.json b/public/organe/PO230842.json new file mode 100644 index 0000000..a035d37 --- /dev/null +++ b/public/organe/PO230842.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230842", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230843.json b/public/organe/PO230843.json new file mode 100644 index 0000000..245bd76 --- /dev/null +++ b/public/organe/PO230843.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230843", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230844.json b/public/organe/PO230844.json new file mode 100644 index 0000000..9a634ae --- /dev/null +++ b/public/organe/PO230844.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230844", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230845.json b/public/organe/PO230845.json new file mode 100644 index 0000000..f1c1e13 --- /dev/null +++ b/public/organe/PO230845.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230845", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230846.json b/public/organe/PO230846.json new file mode 100644 index 0000000..69d28ed --- /dev/null +++ b/public/organe/PO230846.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230846", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230847.json b/public/organe/PO230847.json new file mode 100644 index 0000000..191fada --- /dev/null +++ b/public/organe/PO230847.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230847", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230848.json b/public/organe/PO230848.json new file mode 100644 index 0000000..d5d554a --- /dev/null +++ b/public/organe/PO230848.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230848", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230849.json b/public/organe/PO230849.json new file mode 100644 index 0000000..6ce88a3 --- /dev/null +++ b/public/organe/PO230849.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230849", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230850.json b/public/organe/PO230850.json new file mode 100644 index 0000000..93899d2 --- /dev/null +++ b/public/organe/PO230850.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230850", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO230851.json b/public/organe/PO230851.json new file mode 100644 index 0000000..64f9a73 --- /dev/null +++ b/public/organe/PO230851.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230851", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230852.json b/public/organe/PO230852.json new file mode 100644 index 0000000..f01eeeb --- /dev/null +++ b/public/organe/PO230852.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230852", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230853.json b/public/organe/PO230853.json new file mode 100644 index 0000000..e0c5521 --- /dev/null +++ b/public/organe/PO230853.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230853", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230854.json b/public/organe/PO230854.json new file mode 100644 index 0000000..ed352af --- /dev/null +++ b/public/organe/PO230854.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230854", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230855.json b/public/organe/PO230855.json new file mode 100644 index 0000000..2a752ba --- /dev/null +++ b/public/organe/PO230855.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230855", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230856.json b/public/organe/PO230856.json new file mode 100644 index 0000000..225f653 --- /dev/null +++ b/public/organe/PO230856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230856", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230857.json b/public/organe/PO230857.json new file mode 100644 index 0000000..37d544d --- /dev/null +++ b/public/organe/PO230857.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230857", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230858.json b/public/organe/PO230858.json new file mode 100644 index 0000000..823ba2c --- /dev/null +++ b/public/organe/PO230858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230858", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230859.json b/public/organe/PO230859.json new file mode 100644 index 0000000..e4bc793 --- /dev/null +++ b/public/organe/PO230859.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230859", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230860.json b/public/organe/PO230860.json new file mode 100644 index 0000000..c1da89a --- /dev/null +++ b/public/organe/PO230860.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230860", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230861.json b/public/organe/PO230861.json new file mode 100644 index 0000000..91d8e21 --- /dev/null +++ b/public/organe/PO230861.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230861", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230862.json b/public/organe/PO230862.json new file mode 100644 index 0000000..3421677 --- /dev/null +++ b/public/organe/PO230862.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230862", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO230863.json b/public/organe/PO230863.json new file mode 100644 index 0000000..a1556dc --- /dev/null +++ b/public/organe/PO230863.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230863", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230864.json b/public/organe/PO230864.json new file mode 100644 index 0000000..5e7be29 --- /dev/null +++ b/public/organe/PO230864.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230864", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230865.json b/public/organe/PO230865.json new file mode 100644 index 0000000..4b20baf --- /dev/null +++ b/public/organe/PO230865.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230865", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230866.json b/public/organe/PO230866.json new file mode 100644 index 0000000..8d17a40 --- /dev/null +++ b/public/organe/PO230866.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230866", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230867.json b/public/organe/PO230867.json new file mode 100644 index 0000000..31e3d8c --- /dev/null +++ b/public/organe/PO230867.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230867", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230868.json b/public/organe/PO230868.json new file mode 100644 index 0000000..1bb8ebf --- /dev/null +++ b/public/organe/PO230868.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230868", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230869.json b/public/organe/PO230869.json new file mode 100644 index 0000000..e044453 --- /dev/null +++ b/public/organe/PO230869.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230869", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230870.json b/public/organe/PO230870.json new file mode 100644 index 0000000..489493c --- /dev/null +++ b/public/organe/PO230870.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230870", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230871.json b/public/organe/PO230871.json new file mode 100644 index 0000000..d3c66c4 --- /dev/null +++ b/public/organe/PO230871.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230871", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230872.json b/public/organe/PO230872.json new file mode 100644 index 0000000..214eef5 --- /dev/null +++ b/public/organe/PO230872.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230872", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230873.json b/public/organe/PO230873.json new file mode 100644 index 0000000..b90e15b --- /dev/null +++ b/public/organe/PO230873.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230873", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230874.json b/public/organe/PO230874.json new file mode 100644 index 0000000..980a87c --- /dev/null +++ b/public/organe/PO230874.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230874", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230875.json b/public/organe/PO230875.json new file mode 100644 index 0000000..e954757 --- /dev/null +++ b/public/organe/PO230875.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230875", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230876.json b/public/organe/PO230876.json new file mode 100644 index 0000000..97afbd9 --- /dev/null +++ b/public/organe/PO230876.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230876", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230877.json b/public/organe/PO230877.json new file mode 100644 index 0000000..fd5d0fd --- /dev/null +++ b/public/organe/PO230877.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230877", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230878.json b/public/organe/PO230878.json new file mode 100644 index 0000000..f0819eb --- /dev/null +++ b/public/organe/PO230878.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230878", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230879.json b/public/organe/PO230879.json new file mode 100644 index 0000000..a323c27 --- /dev/null +++ b/public/organe/PO230879.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230879", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230880.json b/public/organe/PO230880.json new file mode 100644 index 0000000..11977c8 --- /dev/null +++ b/public/organe/PO230880.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230880", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230881.json b/public/organe/PO230881.json new file mode 100644 index 0000000..5a40e21 --- /dev/null +++ b/public/organe/PO230881.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230881", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230882.json b/public/organe/PO230882.json new file mode 100644 index 0000000..9c9bdb4 --- /dev/null +++ b/public/organe/PO230882.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230882", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230883.json b/public/organe/PO230883.json new file mode 100644 index 0000000..6e4dafb --- /dev/null +++ b/public/organe/PO230883.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230883", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO230884.json b/public/organe/PO230884.json new file mode 100644 index 0000000..2125f25 --- /dev/null +++ b/public/organe/PO230884.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230884", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO230885.json b/public/organe/PO230885.json new file mode 100644 index 0000000..50ec4e6 --- /dev/null +++ b/public/organe/PO230885.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230885", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO230886.json b/public/organe/PO230886.json new file mode 100644 index 0000000..cfe2653 --- /dev/null +++ b/public/organe/PO230886.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230886", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO230887.json b/public/organe/PO230887.json new file mode 100644 index 0000000..91e075c --- /dev/null +++ b/public/organe/PO230887.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230887", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO230888.json b/public/organe/PO230888.json new file mode 100644 index 0000000..2e0c31a --- /dev/null +++ b/public/organe/PO230888.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230888", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO230889.json b/public/organe/PO230889.json new file mode 100644 index 0000000..d916c08 --- /dev/null +++ b/public/organe/PO230889.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230889", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO230890.json b/public/organe/PO230890.json new file mode 100644 index 0000000..e623e96 --- /dev/null +++ b/public/organe/PO230890.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230890", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO230891.json b/public/organe/PO230891.json new file mode 100644 index 0000000..be91bf3 --- /dev/null +++ b/public/organe/PO230891.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230891", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO230892.json b/public/organe/PO230892.json new file mode 100644 index 0000000..4cc5c49 --- /dev/null +++ b/public/organe/PO230892.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230892", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO230893.json b/public/organe/PO230893.json new file mode 100644 index 0000000..69ce5cb --- /dev/null +++ b/public/organe/PO230893.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230893", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO230894.json b/public/organe/PO230894.json new file mode 100644 index 0000000..0de70e2 --- /dev/null +++ b/public/organe/PO230894.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230894", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO230895.json b/public/organe/PO230895.json new file mode 100644 index 0000000..640deea --- /dev/null +++ b/public/organe/PO230895.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230895", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO230896.json b/public/organe/PO230896.json new file mode 100644 index 0000000..af77792 --- /dev/null +++ b/public/organe/PO230896.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230896", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO230897.json b/public/organe/PO230897.json new file mode 100644 index 0000000..aaaa3f4 --- /dev/null +++ b/public/organe/PO230897.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230897", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO230898.json b/public/organe/PO230898.json new file mode 100644 index 0000000..479e8cf --- /dev/null +++ b/public/organe/PO230898.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230898", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230899.json b/public/organe/PO230899.json new file mode 100644 index 0000000..16a288f --- /dev/null +++ b/public/organe/PO230899.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230899", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230900.json b/public/organe/PO230900.json new file mode 100644 index 0000000..be0f6e1 --- /dev/null +++ b/public/organe/PO230900.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230900", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO230901.json b/public/organe/PO230901.json new file mode 100644 index 0000000..2928962 --- /dev/null +++ b/public/organe/PO230901.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230901", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO230902.json b/public/organe/PO230902.json new file mode 100644 index 0000000..5f74552 --- /dev/null +++ b/public/organe/PO230902.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230902", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO230903.json b/public/organe/PO230903.json new file mode 100644 index 0000000..06f55c6 --- /dev/null +++ b/public/organe/PO230903.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230903", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO230904.json b/public/organe/PO230904.json new file mode 100644 index 0000000..a135d22 --- /dev/null +++ b/public/organe/PO230904.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230904", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO230905.json b/public/organe/PO230905.json new file mode 100644 index 0000000..0a236ef --- /dev/null +++ b/public/organe/PO230905.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230905", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO230906.json b/public/organe/PO230906.json new file mode 100644 index 0000000..69f9b3b --- /dev/null +++ b/public/organe/PO230906.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230906", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO230907.json b/public/organe/PO230907.json new file mode 100644 index 0000000..061ee59 --- /dev/null +++ b/public/organe/PO230907.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230907", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO230908.json b/public/organe/PO230908.json new file mode 100644 index 0000000..6c91376 --- /dev/null +++ b/public/organe/PO230908.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230908", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO230909.json b/public/organe/PO230909.json new file mode 100644 index 0000000..3603f48 --- /dev/null +++ b/public/organe/PO230909.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230909", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO230910.json b/public/organe/PO230910.json new file mode 100644 index 0000000..d4bc227 --- /dev/null +++ b/public/organe/PO230910.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230910", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO230911.json b/public/organe/PO230911.json new file mode 100644 index 0000000..b6a23ef --- /dev/null +++ b/public/organe/PO230911.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230911", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO230912.json b/public/organe/PO230912.json new file mode 100644 index 0000000..79d5eaf --- /dev/null +++ b/public/organe/PO230912.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230912", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO230913.json b/public/organe/PO230913.json new file mode 100644 index 0000000..9f6d13c --- /dev/null +++ b/public/organe/PO230913.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230913", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO230914.json b/public/organe/PO230914.json new file mode 100644 index 0000000..b031214 --- /dev/null +++ b/public/organe/PO230914.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230914", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO230915.json b/public/organe/PO230915.json new file mode 100644 index 0000000..e8a9a6f --- /dev/null +++ b/public/organe/PO230915.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230915", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO230916.json b/public/organe/PO230916.json new file mode 100644 index 0000000..9667a67 --- /dev/null +++ b/public/organe/PO230916.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230916", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO230917.json b/public/organe/PO230917.json new file mode 100644 index 0000000..3a88eb30 --- /dev/null +++ b/public/organe/PO230917.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230917", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO230918.json b/public/organe/PO230918.json new file mode 100644 index 0000000..8ecf029 --- /dev/null +++ b/public/organe/PO230918.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230918", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO230919.json b/public/organe/PO230919.json new file mode 100644 index 0000000..464d48c --- /dev/null +++ b/public/organe/PO230919.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230919", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO230920.json b/public/organe/PO230920.json new file mode 100644 index 0000000..5982333 --- /dev/null +++ b/public/organe/PO230920.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230920", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO230921.json b/public/organe/PO230921.json new file mode 100644 index 0000000..2ffd11f --- /dev/null +++ b/public/organe/PO230921.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230921", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO230922.json b/public/organe/PO230922.json new file mode 100644 index 0000000..50a2569 --- /dev/null +++ b/public/organe/PO230922.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230922", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO230923.json b/public/organe/PO230923.json new file mode 100644 index 0000000..0793a92 --- /dev/null +++ b/public/organe/PO230923.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230923", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO230924.json b/public/organe/PO230924.json new file mode 100644 index 0000000..7ee6323 --- /dev/null +++ b/public/organe/PO230924.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230924", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO230925.json b/public/organe/PO230925.json new file mode 100644 index 0000000..e91aaf9 --- /dev/null +++ b/public/organe/PO230925.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230925", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO230926.json b/public/organe/PO230926.json new file mode 100644 index 0000000..526be16 --- /dev/null +++ b/public/organe/PO230926.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230926", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO230927.json b/public/organe/PO230927.json new file mode 100644 index 0000000..5bb499a --- /dev/null +++ b/public/organe/PO230927.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230927", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO230928.json b/public/organe/PO230928.json new file mode 100644 index 0000000..3c448da --- /dev/null +++ b/public/organe/PO230928.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230928", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230929.json b/public/organe/PO230929.json new file mode 100644 index 0000000..6d6f1be --- /dev/null +++ b/public/organe/PO230929.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230929", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230930.json b/public/organe/PO230930.json new file mode 100644 index 0000000..6a743f9 --- /dev/null +++ b/public/organe/PO230930.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230930", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230931.json b/public/organe/PO230931.json new file mode 100644 index 0000000..e4bac86 --- /dev/null +++ b/public/organe/PO230931.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230931", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO230932.json b/public/organe/PO230932.json new file mode 100644 index 0000000..04fc802 --- /dev/null +++ b/public/organe/PO230932.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230932", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO230933.json b/public/organe/PO230933.json new file mode 100644 index 0000000..9b267d7 --- /dev/null +++ b/public/organe/PO230933.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230933", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230934.json b/public/organe/PO230934.json new file mode 100644 index 0000000..e0a80d5 --- /dev/null +++ b/public/organe/PO230934.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230934", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230935.json b/public/organe/PO230935.json new file mode 100644 index 0000000..218b216 --- /dev/null +++ b/public/organe/PO230935.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230935", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230936.json b/public/organe/PO230936.json new file mode 100644 index 0000000..396824c --- /dev/null +++ b/public/organe/PO230936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230936", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230937.json b/public/organe/PO230937.json new file mode 100644 index 0000000..1582e3d --- /dev/null +++ b/public/organe/PO230937.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230937", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230938.json b/public/organe/PO230938.json new file mode 100644 index 0000000..0d1f435 --- /dev/null +++ b/public/organe/PO230938.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230938", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230939.json b/public/organe/PO230939.json new file mode 100644 index 0000000..6abd637 --- /dev/null +++ b/public/organe/PO230939.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230939", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230940.json b/public/organe/PO230940.json new file mode 100644 index 0000000..59440e9 --- /dev/null +++ b/public/organe/PO230940.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230940", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230941.json b/public/organe/PO230941.json new file mode 100644 index 0000000..f0df0fb --- /dev/null +++ b/public/organe/PO230941.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230941", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230942.json b/public/organe/PO230942.json new file mode 100644 index 0000000..2c41b0e --- /dev/null +++ b/public/organe/PO230942.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230942", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO230943.json b/public/organe/PO230943.json new file mode 100644 index 0000000..88fb4df --- /dev/null +++ b/public/organe/PO230943.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230943", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230944.json b/public/organe/PO230944.json new file mode 100644 index 0000000..a684a50 --- /dev/null +++ b/public/organe/PO230944.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230944", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230945.json b/public/organe/PO230945.json new file mode 100644 index 0000000..a6f2845 --- /dev/null +++ b/public/organe/PO230945.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230945", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230946.json b/public/organe/PO230946.json new file mode 100644 index 0000000..c95e955 --- /dev/null +++ b/public/organe/PO230946.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230946", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230947.json b/public/organe/PO230947.json new file mode 100644 index 0000000..de9d862 --- /dev/null +++ b/public/organe/PO230947.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230947", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230948.json b/public/organe/PO230948.json new file mode 100644 index 0000000..87592bd --- /dev/null +++ b/public/organe/PO230948.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230948", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230949.json b/public/organe/PO230949.json new file mode 100644 index 0000000..f6e7f4c --- /dev/null +++ b/public/organe/PO230949.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230949", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230950.json b/public/organe/PO230950.json new file mode 100644 index 0000000..83ec0f2 --- /dev/null +++ b/public/organe/PO230950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230950", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230951.json b/public/organe/PO230951.json new file mode 100644 index 0000000..744da17 --- /dev/null +++ b/public/organe/PO230951.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230951", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230952.json b/public/organe/PO230952.json new file mode 100644 index 0000000..d4700c8 --- /dev/null +++ b/public/organe/PO230952.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230952", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230953.json b/public/organe/PO230953.json new file mode 100644 index 0000000..23b0594 --- /dev/null +++ b/public/organe/PO230953.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230953", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230954.json b/public/organe/PO230954.json new file mode 100644 index 0000000..2b24f66 --- /dev/null +++ b/public/organe/PO230954.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230954", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230955.json b/public/organe/PO230955.json new file mode 100644 index 0000000..a1f7f1a --- /dev/null +++ b/public/organe/PO230955.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230955", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO230956.json b/public/organe/PO230956.json new file mode 100644 index 0000000..3ddd68e --- /dev/null +++ b/public/organe/PO230956.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230956", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230957.json b/public/organe/PO230957.json new file mode 100644 index 0000000..9a965a4 --- /dev/null +++ b/public/organe/PO230957.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230957", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230958.json b/public/organe/PO230958.json new file mode 100644 index 0000000..ede5e1a --- /dev/null +++ b/public/organe/PO230958.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230958", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230959.json b/public/organe/PO230959.json new file mode 100644 index 0000000..8239ad4 --- /dev/null +++ b/public/organe/PO230959.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230959", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230960.json b/public/organe/PO230960.json new file mode 100644 index 0000000..0b811c7 --- /dev/null +++ b/public/organe/PO230960.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230960", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230961.json b/public/organe/PO230961.json new file mode 100644 index 0000000..26e4683 --- /dev/null +++ b/public/organe/PO230961.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230961", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230962.json b/public/organe/PO230962.json new file mode 100644 index 0000000..715336c --- /dev/null +++ b/public/organe/PO230962.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230962", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230963.json b/public/organe/PO230963.json new file mode 100644 index 0000000..696f2f9 --- /dev/null +++ b/public/organe/PO230963.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230963", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230964.json b/public/organe/PO230964.json new file mode 100644 index 0000000..9718987 --- /dev/null +++ b/public/organe/PO230964.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230964", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230965.json b/public/organe/PO230965.json new file mode 100644 index 0000000..836d06f --- /dev/null +++ b/public/organe/PO230965.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230965", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230966.json b/public/organe/PO230966.json new file mode 100644 index 0000000..19d3e1b --- /dev/null +++ b/public/organe/PO230966.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230966", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230967.json b/public/organe/PO230967.json new file mode 100644 index 0000000..4d6157b --- /dev/null +++ b/public/organe/PO230967.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230967", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230968.json b/public/organe/PO230968.json new file mode 100644 index 0000000..3cf08a9 --- /dev/null +++ b/public/organe/PO230968.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230968", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO230969.json b/public/organe/PO230969.json new file mode 100644 index 0000000..f4ad6c9 --- /dev/null +++ b/public/organe/PO230969.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230969", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230970.json b/public/organe/PO230970.json new file mode 100644 index 0000000..e90a6be --- /dev/null +++ b/public/organe/PO230970.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230970", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230971.json b/public/organe/PO230971.json new file mode 100644 index 0000000..663637f --- /dev/null +++ b/public/organe/PO230971.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230971", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230972.json b/public/organe/PO230972.json new file mode 100644 index 0000000..a3f328d --- /dev/null +++ b/public/organe/PO230972.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230972", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230973.json b/public/organe/PO230973.json new file mode 100644 index 0000000..d2b2ff4 --- /dev/null +++ b/public/organe/PO230973.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230973", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230974.json b/public/organe/PO230974.json new file mode 100644 index 0000000..f2b007e --- /dev/null +++ b/public/organe/PO230974.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230974", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230975.json b/public/organe/PO230975.json new file mode 100644 index 0000000..b4f2e68 --- /dev/null +++ b/public/organe/PO230975.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230975", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230976.json b/public/organe/PO230976.json new file mode 100644 index 0000000..f1df6b4 --- /dev/null +++ b/public/organe/PO230976.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230976", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230977.json b/public/organe/PO230977.json new file mode 100644 index 0000000..afea181 --- /dev/null +++ b/public/organe/PO230977.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230977", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230978.json b/public/organe/PO230978.json new file mode 100644 index 0000000..9b200c9 --- /dev/null +++ b/public/organe/PO230978.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230978", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230979.json b/public/organe/PO230979.json new file mode 100644 index 0000000..9a3e293 --- /dev/null +++ b/public/organe/PO230979.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230979", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230980.json b/public/organe/PO230980.json new file mode 100644 index 0000000..7ad8996 --- /dev/null +++ b/public/organe/PO230980.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230980", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO230981.json b/public/organe/PO230981.json new file mode 100644 index 0000000..5a0be31 --- /dev/null +++ b/public/organe/PO230981.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230981", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230982.json b/public/organe/PO230982.json new file mode 100644 index 0000000..85b4cb8 --- /dev/null +++ b/public/organe/PO230982.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230982", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230983.json b/public/organe/PO230983.json new file mode 100644 index 0000000..de4884a --- /dev/null +++ b/public/organe/PO230983.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230983", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230984.json b/public/organe/PO230984.json new file mode 100644 index 0000000..eeb0859 --- /dev/null +++ b/public/organe/PO230984.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230984", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230985.json b/public/organe/PO230985.json new file mode 100644 index 0000000..3c632ed --- /dev/null +++ b/public/organe/PO230985.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230985", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230986.json b/public/organe/PO230986.json new file mode 100644 index 0000000..c9615ea --- /dev/null +++ b/public/organe/PO230986.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230986", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230987.json b/public/organe/PO230987.json new file mode 100644 index 0000000..60f9a7b --- /dev/null +++ b/public/organe/PO230987.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230987", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230988.json b/public/organe/PO230988.json new file mode 100644 index 0000000..084b4e8 --- /dev/null +++ b/public/organe/PO230988.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230988", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230989.json b/public/organe/PO230989.json new file mode 100644 index 0000000..6317410 --- /dev/null +++ b/public/organe/PO230989.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230989", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO230990.json b/public/organe/PO230990.json new file mode 100644 index 0000000..a5717b5 --- /dev/null +++ b/public/organe/PO230990.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230990", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO230991.json b/public/organe/PO230991.json new file mode 100644 index 0000000..a03ebca --- /dev/null +++ b/public/organe/PO230991.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230991", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO230992.json b/public/organe/PO230992.json new file mode 100644 index 0000000..dc424a3 --- /dev/null +++ b/public/organe/PO230992.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230992", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO230993.json b/public/organe/PO230993.json new file mode 100644 index 0000000..0962346 --- /dev/null +++ b/public/organe/PO230993.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230993", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO230994.json b/public/organe/PO230994.json new file mode 100644 index 0000000..7e34e81 --- /dev/null +++ b/public/organe/PO230994.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230994", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO230995.json b/public/organe/PO230995.json new file mode 100644 index 0000000..5f78284 --- /dev/null +++ b/public/organe/PO230995.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230995", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO230996.json b/public/organe/PO230996.json new file mode 100644 index 0000000..c310b38 --- /dev/null +++ b/public/organe/PO230996.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230996", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO230997.json b/public/organe/PO230997.json new file mode 100644 index 0000000..4c59849 --- /dev/null +++ b/public/organe/PO230997.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230997", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO230998.json b/public/organe/PO230998.json new file mode 100644 index 0000000..f91964a --- /dev/null +++ b/public/organe/PO230998.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230998", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO230999.json b/public/organe/PO230999.json new file mode 100644 index 0000000..098306b --- /dev/null +++ b/public/organe/PO230999.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO230999", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO231000.json b/public/organe/PO231000.json new file mode 100644 index 0000000..0db9311 --- /dev/null +++ b/public/organe/PO231000.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231000", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO231001.json b/public/organe/PO231001.json new file mode 100644 index 0000000..28417cc --- /dev/null +++ b/public/organe/PO231001.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231001", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO231002.json b/public/organe/PO231002.json new file mode 100644 index 0000000..cf751b3 --- /dev/null +++ b/public/organe/PO231002.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231002", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO231003.json b/public/organe/PO231003.json new file mode 100644 index 0000000..12c5d85 --- /dev/null +++ b/public/organe/PO231003.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231003", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO231004.json b/public/organe/PO231004.json new file mode 100644 index 0000000..af49045 --- /dev/null +++ b/public/organe/PO231004.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231004", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "5", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO231005.json b/public/organe/PO231005.json new file mode 100644 index 0000000..14409b1 --- /dev/null +++ b/public/organe/PO231005.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231005", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO231006.json b/public/organe/PO231006.json new file mode 100644 index 0000000..c226227 --- /dev/null +++ b/public/organe/PO231006.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231006", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "T", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO231007.json b/public/organe/PO231007.json new file mode 100644 index 0000000..77119ca --- /dev/null +++ b/public/organe/PO231007.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231007", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO231008.json b/public/organe/PO231008.json new file mode 100644 index 0000000..0b741f6 --- /dev/null +++ b/public/organe/PO231008.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231008", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO231009.json b/public/organe/PO231009.json new file mode 100644 index 0000000..620cbf3 --- /dev/null +++ b/public/organe/PO231009.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231009", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO231010.json b/public/organe/PO231010.json new file mode 100644 index 0000000..6473b6d --- /dev/null +++ b/public/organe/PO231010.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231010", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO231011.json b/public/organe/PO231011.json new file mode 100644 index 0000000..4ed4f93 --- /dev/null +++ b/public/organe/PO231011.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO231011", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": "2007-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "12", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO271850.json b/public/organe/PO271850.json new file mode 100644 index 0000000..9e72c2f --- /dev/null +++ b/public/organe/PO271850.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO271850", "codeType": "COMNL", "libelle": "Commission charg\u00e9e de l'application de l'article 26 de la Constitution", "libelleEdition": "de la commission charg\u00e9e de l'application de l'article 26 de la Constitution", "libelleAbrege": "Immunit\u00e9s", "libelleAbrev": "IMMU", "viMoDe": {"dateDebut": "1994-04-06", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO271860.json b/public/organe/PO271860.json new file mode 100644 index 0000000..72770fb --- /dev/null +++ b/public/organe/PO271860.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO271860", "codeType": "COMNL", "libelle": "Commission sp\u00e9ciale charg\u00e9e de v\u00e9rifier et d'apurer les comptes", "libelleEdition": "de la commission sp\u00e9ciale charg\u00e9e de v\u00e9rifier et d'apurer les comptes", "libelleAbrege": "Comptes", "libelleAbrev": "COMP", "viMoDe": {"dateDebut": "1986-04-08", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO273589.json b/public/organe/PO273589.json new file mode 100644 index 0000000..dbd8350 --- /dev/null +++ b/public/organe/PO273589.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO273589", "codeType": "OFFPAR", "libelle": "Office parlementaire d'\u00e9valuation des choix scientifiques et technologiques", "libelleEdition": "de l'office parlementaire d'\u00e9valuation des choix scientifiques et technologiques", "libelleAbrege": "office parlementaire d'\u00e9valuation des choix scientifiques et technologiques", "libelleAbrev": "OTS", "viMoDe": {"dateDebut": "2002-06-19", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Michel Bermond", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO273730.json b/public/organe/PO273730.json new file mode 100644 index 0000000..a52d18a --- /dev/null +++ b/public/organe/PO273730.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO273730", "codeType": "ORGEXTPARL", "libelle": "Observatoire de la s\u00e9curit\u00e9 des moyens de paiement", "libelleEdition": "de l'Observatoire de la s\u00e9curit\u00e9 des moyens de paiement", "libelleAbrege": "Cartes de paiement", "libelleAbrev": "187", "viMoDe": {"dateDebut": "2002-05-02", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 141-4 du code mon\u00e9taire et financier", "siteInternet": "https://www.banque-france.fr/stabilite-financiere/observatoire-de-la-securite-des-moyens-de-paiement", "nombreReunionsAnnuelles": "3"}} \ No newline at end of file diff --git a/public/organe/PO275380.json b/public/organe/PO275380.json new file mode 100644 index 0000000..3e1e1d4 --- /dev/null +++ b/public/organe/PO275380.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO275380", "codeType": "ORGEXTPARL", "libelle": "Haut conseil des mus\u00e9es de France", "libelleEdition": "du Haut conseil des mus\u00e9es de France", "libelleAbrege": "Mus\u00e9es", "libelleAbrev": "186", "viMoDe": {"dateDebut": "2002-05-04", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 430-1 du code du patrimoine", "siteInternet": null, "nombreReunionsAnnuelles": "2"}} \ No newline at end of file diff --git a/public/organe/PO286005.json b/public/organe/PO286005.json new file mode 100644 index 0000000..9ef8733 --- /dev/null +++ b/public/organe/PO286005.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO286005", "codeType": "GROUPESENAT", "libelle": "Groupe Les R\u00e9publicains", "libelleEdition": "du groupe Les R\u00e9publicains", "libelleAbrege": "Les R\u00e9publicains", "libelleAbrev": "UMPPO", "viMoDe": {"dateDebut": "2002-12-11", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO288374.json b/public/organe/PO288374.json new file mode 100644 index 0000000..ef1db52 --- /dev/null +++ b/public/organe/PO288374.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO288374", "codeType": "ORGEXTPARL", "libelle": "Conseil national consultatif des personnes handicap\u00e9es", "libelleEdition": "du Conseil national consultatif des personnes handicap\u00e9es", "libelleAbrege": "Personnes handicap\u00e9es", "libelleAbrev": "190", "viMoDe": {"dateDebut": "2002-11-27", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 146-1 du code de l\u2019action sociale et des familles", "siteInternet": "https://www.gouvernement.fr/conseil-national-consultatif-des-personnes-handicapees-cncph", "nombreReunionsAnnuelles": "53"}} \ No newline at end of file diff --git a/public/organe/PO296224.json b/public/organe/PO296224.json new file mode 100644 index 0000000..5076093 --- /dev/null +++ b/public/organe/PO296224.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO296224", "codeType": "ORGEXTPARL", "libelle": "Haut Conseil pour l'avenir de l'Assurance maladie", "libelleEdition": "du Haut Conseil pour l'avenir de l'Assurance maladie", "libelleAbrege": "Avenir de l'assurance maladie", "libelleAbrev": "194", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article 72 de la loi n\u00b0 2005-1579 du 19 d\u00e9cembre 2005", "siteInternet": "http://www.securite-sociale.fr/-Composition-et-fonctionnement,1191-", "nombreReunionsAnnuelles": "21"}} \ No newline at end of file diff --git a/public/organe/PO299840.json b/public/organe/PO299840.json new file mode 100644 index 0000000..90ab073 --- /dev/null +++ b/public/organe/PO299840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO299840", "codeType": "CIRCONSCRIPTION", "libelle": "22\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b022\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "22", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO303479.json b/public/organe/PO303479.json new file mode 100644 index 0000000..6aed8b7 --- /dev/null +++ b/public/organe/PO303479.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO303479", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 consultatif du secteur financier", "libelleEdition": "du Comit\u00e9 consultatif du secteur financier", "libelleAbrege": "Secteur financier", "libelleAbrev": "200", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article L. 614-1 du code mon\u00e9taire et financier", "siteInternet": "https://www.ccsfin.fr/presentation/organisation", "nombreReunionsAnnuelles": "43"}} \ No newline at end of file diff --git a/public/organe/PO303484.json b/public/organe/PO303484.json new file mode 100644 index 0000000..d021c57 --- /dev/null +++ b/public/organe/PO303484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO303484", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 consultatif de la l\u00e9gislation et de la r\u00e9glementation financi\u00e8res", "libelleEdition": "du Comit\u00e9 consultatif de la l\u00e9gislation et de la r\u00e9glementation financi\u00e8res", "libelleAbrege": "L\u00e9gislation et r\u00e9glementation financi\u00e8res", "libelleAbrev": "201", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article L. 614-2 du code mon\u00e9taire et financier", "siteInternet": "https://cclrf.banque-france.fr/presentation/composition", "nombreReunionsAnnuelles": "14"}} \ No newline at end of file diff --git a/public/organe/PO304272.json b/public/organe/PO304272.json new file mode 100644 index 0000000..0fff45c --- /dev/null +++ b/public/organe/PO304272.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO304272", "codeType": "API", "libelle": "D\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire du Conseil de l'Europe", "libelleEdition": "de la d\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire du Conseil de l'Europe", "libelleAbrege": "Conseil de l'Europe", "libelleAbrev": "CEUR", "viMoDe": {"dateDebut": "1958-12-19", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Fr\u00e9d\u00e9ric Taillet", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO307788.json b/public/organe/PO307788.json new file mode 100644 index 0000000..e380dc4 --- /dev/null +++ b/public/organe/PO307788.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO307788", "codeType": "ORGEXTPARL", "libelle": "Conseil d'orientation de l'Agence de la biom\u00e9decine", "libelleEdition": "du conseil d'orientation de l'Agence de la biom\u00e9decine", "libelleAbrege": "Agence de la biom\u00e9decine", "libelleAbrev": "199", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article L. 1418-4 du code de la sant\u00e9 publique", "siteInternet": "https://www.agence-biomedecine.fr/deliberations-conseil-orientation", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO309245.json b/public/organe/PO309245.json new file mode 100644 index 0000000..9f42233 --- /dev/null +++ b/public/organe/PO309245.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO309245", "codeType": "ORGEXTPARL", "libelle": "Conf\u00e9rence nationale des services d'incendie et de secours", "libelleEdition": "de la Conf\u00e9rence nationale des services d'incendie et de secours", "libelleAbrege": "Incendie et secours", "libelleAbrev": "205", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article\u00a044 de la loi\u00a0n\u00b0\u00a02004-811 du 13\u00a0ao\u00fbt\u00a02004", "siteInternet": "https://www.interieur.gouv.fr/Le-ministere/Securite-civile/Documentation-technique/Les-sapeurs-pompiers/Les-services-departementaux-d-incendie-et-de-secours/Conference-nationale-des-services-d-incendie-et-de-secours-CNIS", "nombreReunionsAnnuelles": "5"}} \ No newline at end of file diff --git a/public/organe/PO309463.json b/public/organe/PO309463.json new file mode 100644 index 0000000..ef265ba --- /dev/null +++ b/public/organe/PO309463.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO309463", "codeType": "GROUPESENAT", "libelle": "UDI-UC", "libelleEdition": "de l'UDI-UC", "libelleAbrege": "UDI-UC", "libelleAbrev": "UCPOL", "viMoDe": {"dateDebut": "1995-10-02", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO310693.json b/public/organe/PO310693.json new file mode 100644 index 0000000..bd8dc61 --- /dev/null +++ b/public/organe/PO310693.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO310693", "codeType": "DELEGSENAT", "libelle": "D\u00e9l\u00e9gation aux droits des femmes et \u00e0 l'\u00e9galit\u00e9 des chances entre les hommes et les femmes", "libelleEdition": "de la d\u00e9l\u00e9gation aux droits des femmes et \u00e0 l'\u00e9galit\u00e9 des chances entre les hommes et les femmes", "libelleAbrege": "Droits des femmes", "libelleAbrev": "211DE", "viMoDe": {"dateDebut": "1999-07-12", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO312799.json b/public/organe/PO312799.json new file mode 100644 index 0000000..19d637b --- /dev/null +++ b/public/organe/PO312799.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO312799", "codeType": "ORGEXTPARL", "libelle": "Conseil de la Caisse nationale de solidarit\u00e9 pour l'autonomie", "libelleEdition": "du conseil de la Caisse nationale de solidarit\u00e9 pour l'autonomie", "libelleAbrege": "Caisse nationale de solidarit\u00e9 pour l'autonomie (CNSA)", "libelleAbrev": "212", "viMoDe": {"dateDebut": "2005-05-10", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 14-10-3 du code de l\u2019action sociale et des familles", "siteInternet": "https://www.cnsa.fr/qui-sommes-nous/gouvernance", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO312834.json b/public/organe/PO312834.json new file mode 100644 index 0000000..46ee406 --- /dev/null +++ b/public/organe/PO312834.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO312834", "codeType": "ORGEXTPARL", "libelle": "Conseil d'orientation pour l'emploi", "libelleEdition": "du Conseil d'orientation pour l'emploi", "libelleAbrege": "Emploi", "libelleAbrev": "213", "viMoDe": {"dateDebut": "2005-04-07", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 34 de la loi n\u00b0 2018-699 du 3 ao\u00fbt 2018", "siteInternet": "http://www.coe.gouv.fr/Presentation7597.html?id_article=320", "nombreReunionsAnnuelles": "30"}} \ No newline at end of file diff --git a/public/organe/PO312952.json b/public/organe/PO312952.json new file mode 100644 index 0000000..3565b41 --- /dev/null +++ b/public/organe/PO312952.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO312952", "codeType": "ORGEXTPARL", "libelle": "Commission nationale d'agr\u00e9ment des associations repr\u00e9sentant les usagers dans les instances hospitali\u00e8res ou de sant\u00e9 publique", "libelleEdition": "de la Commission nationale d'agr\u00e9ment des associations repr\u00e9sentant les usagers dans les instances hospitali\u00e8res ou de sant\u00e9 publique", "libelleAbrege": "Agr\u00e9ment des associations d'usagers", "libelleAbrev": "214", "viMoDe": {"dateDebut": "2005-03-31", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 1114-5 du code de la sant\u00e9 publique", "siteInternet": "http://solidarites-sante.gouv.fr/ministere/acteurs/partenaires/article/cnaarusp-commission-nationale-d-agrement", "nombreReunionsAnnuelles": "10"}} \ No newline at end of file diff --git a/public/organe/PO322345.json b/public/organe/PO322345.json new file mode 100644 index 0000000..60777bd --- /dev/null +++ b/public/organe/PO322345.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO322345", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration du Centre national des oeuvres universitaires et scolaires", "libelleEdition": "du conseil d'administration du Centre national des oeuvres universitaires et scolaires", "libelleAbrege": "CNOUS", "libelleAbrev": "222", "viMoDe": {"dateDebut": "2005-08-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 822-2 du code de l\u2019\u00e9ducation", "siteInternet": "http://www.etudiant.gouv.fr/cid97588/le-centre-national-des-oelig-uvres-universitaires-scolaires-cnous.html", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO382559.json b/public/organe/PO382559.json new file mode 100644 index 0000000..fecbaba --- /dev/null +++ b/public/organe/PO382559.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO382559", "codeType": "ORGEXTPARL", "libelle": "Haut comit\u00e9 pour la transparence et l'information sur la s\u00e9curit\u00e9 nucl\u00e9aire", "libelleEdition": "du Haut comit\u00e9 pour la transparence et l'information sur la s\u00e9curit\u00e9 nucl\u00e9aire", "libelleAbrege": "S\u00e9curit\u00e9 nucl\u00e9aire", "libelleAbrev": "233", "viMoDe": {"dateDebut": "2006-12-15", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 125-37 du code de l\u2019environnement", "siteInternet": "http://www.hctisn.fr/rubrique.php3?id_rubrique=3", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO382940.json b/public/organe/PO382940.json new file mode 100644 index 0000000..4680bc9 --- /dev/null +++ b/public/organe/PO382940.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO382940", "codeType": "PRESREP", "libelle": "Pr\u00e9sidence de la R\u00e9publique : M. Nicolas Sarkozy", "libelleEdition": "de la R\u00e9publique", "libelleAbrege": "Pr\u00e9sidence de la R\u00e9publique", "libelleAbrev": "PRESI", "viMoDe": {"dateDebut": "2007-05-16", "dateAgrement": null, "dateFin": "2012-05-15"}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO384267.json b/public/organe/PO384267.json new file mode 100644 index 0000000..88f6d10 --- /dev/null +++ b/public/organe/PO384267.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384267", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO384268.json b/public/organe/PO384268.json new file mode 100644 index 0000000..1d52fd1 --- /dev/null +++ b/public/organe/PO384268.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384268", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO384269.json b/public/organe/PO384269.json new file mode 100644 index 0000000..9c8579a --- /dev/null +++ b/public/organe/PO384269.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384269", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO384270.json b/public/organe/PO384270.json new file mode 100644 index 0000000..be9e8cb --- /dev/null +++ b/public/organe/PO384270.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384270", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO384271.json b/public/organe/PO384271.json new file mode 100644 index 0000000..1c0a1ba --- /dev/null +++ b/public/organe/PO384271.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384271", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO384272.json b/public/organe/PO384272.json new file mode 100644 index 0000000..0dd699f --- /dev/null +++ b/public/organe/PO384272.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384272", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO384273.json b/public/organe/PO384273.json new file mode 100644 index 0000000..b60d992 --- /dev/null +++ b/public/organe/PO384273.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384273", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO384274.json b/public/organe/PO384274.json new file mode 100644 index 0000000..7c9c02e --- /dev/null +++ b/public/organe/PO384274.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384274", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO384275.json b/public/organe/PO384275.json new file mode 100644 index 0000000..0d81d3e --- /dev/null +++ b/public/organe/PO384275.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384275", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO384276.json b/public/organe/PO384276.json new file mode 100644 index 0000000..79a0520 --- /dev/null +++ b/public/organe/PO384276.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384276", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO384277.json b/public/organe/PO384277.json new file mode 100644 index 0000000..220991d --- /dev/null +++ b/public/organe/PO384277.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384277", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO384278.json b/public/organe/PO384278.json new file mode 100644 index 0000000..596a7e2 --- /dev/null +++ b/public/organe/PO384278.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384278", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO384279.json b/public/organe/PO384279.json new file mode 100644 index 0000000..6d205e7 --- /dev/null +++ b/public/organe/PO384279.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384279", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO384280.json b/public/organe/PO384280.json new file mode 100644 index 0000000..223184a --- /dev/null +++ b/public/organe/PO384280.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384280", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO384281.json b/public/organe/PO384281.json new file mode 100644 index 0000000..3c449bd --- /dev/null +++ b/public/organe/PO384281.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384281", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO384282.json b/public/organe/PO384282.json new file mode 100644 index 0000000..fb29b9d --- /dev/null +++ b/public/organe/PO384282.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384282", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO384283.json b/public/organe/PO384283.json new file mode 100644 index 0000000..cbe06c0 --- /dev/null +++ b/public/organe/PO384283.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384283", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO384284.json b/public/organe/PO384284.json new file mode 100644 index 0000000..ec19c19 --- /dev/null +++ b/public/organe/PO384284.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384284", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO384285.json b/public/organe/PO384285.json new file mode 100644 index 0000000..12f4bf6 --- /dev/null +++ b/public/organe/PO384285.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384285", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO384286.json b/public/organe/PO384286.json new file mode 100644 index 0000000..e496a56 --- /dev/null +++ b/public/organe/PO384286.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384286", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO384287.json b/public/organe/PO384287.json new file mode 100644 index 0000000..978c2d4 --- /dev/null +++ b/public/organe/PO384287.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384287", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO384288.json b/public/organe/PO384288.json new file mode 100644 index 0000000..7657fbc --- /dev/null +++ b/public/organe/PO384288.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384288", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO384289.json b/public/organe/PO384289.json new file mode 100644 index 0000000..4a28578 --- /dev/null +++ b/public/organe/PO384289.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384289", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO384290.json b/public/organe/PO384290.json new file mode 100644 index 0000000..af70911 --- /dev/null +++ b/public/organe/PO384290.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384290", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO384291.json b/public/organe/PO384291.json new file mode 100644 index 0000000..f4ac85d --- /dev/null +++ b/public/organe/PO384291.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384291", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO384292.json b/public/organe/PO384292.json new file mode 100644 index 0000000..a5fefcb --- /dev/null +++ b/public/organe/PO384292.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384292", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO384293.json b/public/organe/PO384293.json new file mode 100644 index 0000000..2bdc858 --- /dev/null +++ b/public/organe/PO384293.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384293", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO384294.json b/public/organe/PO384294.json new file mode 100644 index 0000000..23445be --- /dev/null +++ b/public/organe/PO384294.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384294", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO384295.json b/public/organe/PO384295.json new file mode 100644 index 0000000..9fe8e43 --- /dev/null +++ b/public/organe/PO384295.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384295", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO384296.json b/public/organe/PO384296.json new file mode 100644 index 0000000..5096985 --- /dev/null +++ b/public/organe/PO384296.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384296", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO384297.json b/public/organe/PO384297.json new file mode 100644 index 0000000..66270ba --- /dev/null +++ b/public/organe/PO384297.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384297", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO384298.json b/public/organe/PO384298.json new file mode 100644 index 0000000..233c32f --- /dev/null +++ b/public/organe/PO384298.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384298", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO384299.json b/public/organe/PO384299.json new file mode 100644 index 0000000..bed1180 --- /dev/null +++ b/public/organe/PO384299.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384299", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO384300.json b/public/organe/PO384300.json new file mode 100644 index 0000000..ee8f16a --- /dev/null +++ b/public/organe/PO384300.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384300", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO384301.json b/public/organe/PO384301.json new file mode 100644 index 0000000..4538fbb --- /dev/null +++ b/public/organe/PO384301.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384301", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO384302.json b/public/organe/PO384302.json new file mode 100644 index 0000000..c77af8c --- /dev/null +++ b/public/organe/PO384302.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384302", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO384303.json b/public/organe/PO384303.json new file mode 100644 index 0000000..d9a1229 --- /dev/null +++ b/public/organe/PO384303.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384303", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO384304.json b/public/organe/PO384304.json new file mode 100644 index 0000000..774c20a --- /dev/null +++ b/public/organe/PO384304.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384304", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO384305.json b/public/organe/PO384305.json new file mode 100644 index 0000000..7f203ba --- /dev/null +++ b/public/organe/PO384305.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384305", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO384306.json b/public/organe/PO384306.json new file mode 100644 index 0000000..8c6211b --- /dev/null +++ b/public/organe/PO384306.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384306", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO384307.json b/public/organe/PO384307.json new file mode 100644 index 0000000..05a5e89 --- /dev/null +++ b/public/organe/PO384307.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384307", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO384308.json b/public/organe/PO384308.json new file mode 100644 index 0000000..ac70aca --- /dev/null +++ b/public/organe/PO384308.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384308", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO384309.json b/public/organe/PO384309.json new file mode 100644 index 0000000..f0e2737 --- /dev/null +++ b/public/organe/PO384309.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384309", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO384310.json b/public/organe/PO384310.json new file mode 100644 index 0000000..46999e5 --- /dev/null +++ b/public/organe/PO384310.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384310", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384311.json b/public/organe/PO384311.json new file mode 100644 index 0000000..41c682e --- /dev/null +++ b/public/organe/PO384311.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384311", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384312.json b/public/organe/PO384312.json new file mode 100644 index 0000000..9f5d0c1 --- /dev/null +++ b/public/organe/PO384312.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384312", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384313.json b/public/organe/PO384313.json new file mode 100644 index 0000000..7f91e63 --- /dev/null +++ b/public/organe/PO384313.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384313", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384314.json b/public/organe/PO384314.json new file mode 100644 index 0000000..57481e7 --- /dev/null +++ b/public/organe/PO384314.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384314", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384315.json b/public/organe/PO384315.json new file mode 100644 index 0000000..783bb8a --- /dev/null +++ b/public/organe/PO384315.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384315", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384316.json b/public/organe/PO384316.json new file mode 100644 index 0000000..960330c --- /dev/null +++ b/public/organe/PO384316.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384316", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384317.json b/public/organe/PO384317.json new file mode 100644 index 0000000..acd5f87 --- /dev/null +++ b/public/organe/PO384317.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384317", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384318.json b/public/organe/PO384318.json new file mode 100644 index 0000000..d96014a --- /dev/null +++ b/public/organe/PO384318.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384318", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384319.json b/public/organe/PO384319.json new file mode 100644 index 0000000..43e716a --- /dev/null +++ b/public/organe/PO384319.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384319", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384320.json b/public/organe/PO384320.json new file mode 100644 index 0000000..2901077 --- /dev/null +++ b/public/organe/PO384320.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384320", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384321.json b/public/organe/PO384321.json new file mode 100644 index 0000000..0410fa1 --- /dev/null +++ b/public/organe/PO384321.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384321", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384322.json b/public/organe/PO384322.json new file mode 100644 index 0000000..2537cab --- /dev/null +++ b/public/organe/PO384322.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384322", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384323.json b/public/organe/PO384323.json new file mode 100644 index 0000000..34c3eca --- /dev/null +++ b/public/organe/PO384323.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384323", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384324.json b/public/organe/PO384324.json new file mode 100644 index 0000000..64fdd66 --- /dev/null +++ b/public/organe/PO384324.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384324", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384325.json b/public/organe/PO384325.json new file mode 100644 index 0000000..2861ee2 --- /dev/null +++ b/public/organe/PO384325.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384325", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384326.json b/public/organe/PO384326.json new file mode 100644 index 0000000..eb3c87c --- /dev/null +++ b/public/organe/PO384326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384326", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO384327.json b/public/organe/PO384327.json new file mode 100644 index 0000000..dc3425b --- /dev/null +++ b/public/organe/PO384327.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384327", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO384328.json b/public/organe/PO384328.json new file mode 100644 index 0000000..5df93a2 --- /dev/null +++ b/public/organe/PO384328.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384328", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO384329.json b/public/organe/PO384329.json new file mode 100644 index 0000000..e158e37 --- /dev/null +++ b/public/organe/PO384329.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384329", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO384330.json b/public/organe/PO384330.json new file mode 100644 index 0000000..1121917 --- /dev/null +++ b/public/organe/PO384330.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384330", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO384331.json b/public/organe/PO384331.json new file mode 100644 index 0000000..c5619f9 --- /dev/null +++ b/public/organe/PO384331.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384331", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO384332.json b/public/organe/PO384332.json new file mode 100644 index 0000000..55734ad --- /dev/null +++ b/public/organe/PO384332.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384332", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO384333.json b/public/organe/PO384333.json new file mode 100644 index 0000000..6590a12 --- /dev/null +++ b/public/organe/PO384333.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384333", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO384334.json b/public/organe/PO384334.json new file mode 100644 index 0000000..cd97a4e --- /dev/null +++ b/public/organe/PO384334.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384334", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO384335.json b/public/organe/PO384335.json new file mode 100644 index 0000000..018dd74 --- /dev/null +++ b/public/organe/PO384335.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384335", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO384336.json b/public/organe/PO384336.json new file mode 100644 index 0000000..e4020ef --- /dev/null +++ b/public/organe/PO384336.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384336", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO384337.json b/public/organe/PO384337.json new file mode 100644 index 0000000..fe2f3d1 --- /dev/null +++ b/public/organe/PO384337.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384337", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO384338.json b/public/organe/PO384338.json new file mode 100644 index 0000000..002a125 --- /dev/null +++ b/public/organe/PO384338.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384338", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384339.json b/public/organe/PO384339.json new file mode 100644 index 0000000..52ec562 --- /dev/null +++ b/public/organe/PO384339.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384339", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384340.json b/public/organe/PO384340.json new file mode 100644 index 0000000..7d51f91 --- /dev/null +++ b/public/organe/PO384340.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384340", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384341.json b/public/organe/PO384341.json new file mode 100644 index 0000000..7718a1d --- /dev/null +++ b/public/organe/PO384341.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384341", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384342.json b/public/organe/PO384342.json new file mode 100644 index 0000000..4804d69 --- /dev/null +++ b/public/organe/PO384342.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384342", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384343.json b/public/organe/PO384343.json new file mode 100644 index 0000000..75c74bc --- /dev/null +++ b/public/organe/PO384343.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384343", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO384344.json b/public/organe/PO384344.json new file mode 100644 index 0000000..f636500 --- /dev/null +++ b/public/organe/PO384344.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384344", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO384345.json b/public/organe/PO384345.json new file mode 100644 index 0000000..853b652 --- /dev/null +++ b/public/organe/PO384345.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384345", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO384346.json b/public/organe/PO384346.json new file mode 100644 index 0000000..8f29e46 --- /dev/null +++ b/public/organe/PO384346.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384346", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO384347.json b/public/organe/PO384347.json new file mode 100644 index 0000000..9e4f5d6 --- /dev/null +++ b/public/organe/PO384347.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384347", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO384348.json b/public/organe/PO384348.json new file mode 100644 index 0000000..d06d138 --- /dev/null +++ b/public/organe/PO384348.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384348", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO384349.json b/public/organe/PO384349.json new file mode 100644 index 0000000..a18c58e --- /dev/null +++ b/public/organe/PO384349.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384349", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO384350.json b/public/organe/PO384350.json new file mode 100644 index 0000000..aad4f1b --- /dev/null +++ b/public/organe/PO384350.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384350", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO384351.json b/public/organe/PO384351.json new file mode 100644 index 0000000..59a89e1 --- /dev/null +++ b/public/organe/PO384351.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384351", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO384352.json b/public/organe/PO384352.json new file mode 100644 index 0000000..c69c12a --- /dev/null +++ b/public/organe/PO384352.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384352", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO384353.json b/public/organe/PO384353.json new file mode 100644 index 0000000..f103592 --- /dev/null +++ b/public/organe/PO384353.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384353", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO384354.json b/public/organe/PO384354.json new file mode 100644 index 0000000..98d4eb3 --- /dev/null +++ b/public/organe/PO384354.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384354", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO384355.json b/public/organe/PO384355.json new file mode 100644 index 0000000..b21014f --- /dev/null +++ b/public/organe/PO384355.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384355", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO384356.json b/public/organe/PO384356.json new file mode 100644 index 0000000..bfc02c5 --- /dev/null +++ b/public/organe/PO384356.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384356", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO384357.json b/public/organe/PO384357.json new file mode 100644 index 0000000..26e6e68 --- /dev/null +++ b/public/organe/PO384357.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384357", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO384358.json b/public/organe/PO384358.json new file mode 100644 index 0000000..9a8486f --- /dev/null +++ b/public/organe/PO384358.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384358", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO384359.json b/public/organe/PO384359.json new file mode 100644 index 0000000..0d23709 --- /dev/null +++ b/public/organe/PO384359.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384359", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO384360.json b/public/organe/PO384360.json new file mode 100644 index 0000000..f3b4dae --- /dev/null +++ b/public/organe/PO384360.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384360", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO384361.json b/public/organe/PO384361.json new file mode 100644 index 0000000..3367bd4 --- /dev/null +++ b/public/organe/PO384361.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384361", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO384362.json b/public/organe/PO384362.json new file mode 100644 index 0000000..bb5b18b --- /dev/null +++ b/public/organe/PO384362.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384362", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO384363.json b/public/organe/PO384363.json new file mode 100644 index 0000000..e309d33 --- /dev/null +++ b/public/organe/PO384363.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384363", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO384364.json b/public/organe/PO384364.json new file mode 100644 index 0000000..f6646bc --- /dev/null +++ b/public/organe/PO384364.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384364", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO384365.json b/public/organe/PO384365.json new file mode 100644 index 0000000..f30b9b2 --- /dev/null +++ b/public/organe/PO384365.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384365", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO384366.json b/public/organe/PO384366.json new file mode 100644 index 0000000..1586406 --- /dev/null +++ b/public/organe/PO384366.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384366", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO384367.json b/public/organe/PO384367.json new file mode 100644 index 0000000..f93889c --- /dev/null +++ b/public/organe/PO384367.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384367", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO384368.json b/public/organe/PO384368.json new file mode 100644 index 0000000..ac5c51a --- /dev/null +++ b/public/organe/PO384368.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384368", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO384369.json b/public/organe/PO384369.json new file mode 100644 index 0000000..996cf77 --- /dev/null +++ b/public/organe/PO384369.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384369", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO384370.json b/public/organe/PO384370.json new file mode 100644 index 0000000..ebbfaec --- /dev/null +++ b/public/organe/PO384370.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384370", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO384371.json b/public/organe/PO384371.json new file mode 100644 index 0000000..9454c31 --- /dev/null +++ b/public/organe/PO384371.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384371", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO384372.json b/public/organe/PO384372.json new file mode 100644 index 0000000..d555ee1 --- /dev/null +++ b/public/organe/PO384372.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384372", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO384373.json b/public/organe/PO384373.json new file mode 100644 index 0000000..1785161 --- /dev/null +++ b/public/organe/PO384373.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384373", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO384374.json b/public/organe/PO384374.json new file mode 100644 index 0000000..0dd3e72 --- /dev/null +++ b/public/organe/PO384374.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384374", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384375.json b/public/organe/PO384375.json new file mode 100644 index 0000000..bf67b2a --- /dev/null +++ b/public/organe/PO384375.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384375", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384376.json b/public/organe/PO384376.json new file mode 100644 index 0000000..2d83059 --- /dev/null +++ b/public/organe/PO384376.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384376", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384377.json b/public/organe/PO384377.json new file mode 100644 index 0000000..c449626 --- /dev/null +++ b/public/organe/PO384377.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384377", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384378.json b/public/organe/PO384378.json new file mode 100644 index 0000000..0088a65 --- /dev/null +++ b/public/organe/PO384378.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384378", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO384379.json b/public/organe/PO384379.json new file mode 100644 index 0000000..d677333 --- /dev/null +++ b/public/organe/PO384379.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384379", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO384380.json b/public/organe/PO384380.json new file mode 100644 index 0000000..4d84052 --- /dev/null +++ b/public/organe/PO384380.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384380", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO384381.json b/public/organe/PO384381.json new file mode 100644 index 0000000..9d502a4 --- /dev/null +++ b/public/organe/PO384381.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384381", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO384382.json b/public/organe/PO384382.json new file mode 100644 index 0000000..c77d09a --- /dev/null +++ b/public/organe/PO384382.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384382", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO384383.json b/public/organe/PO384383.json new file mode 100644 index 0000000..e80f6dd --- /dev/null +++ b/public/organe/PO384383.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384383", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO384384.json b/public/organe/PO384384.json new file mode 100644 index 0000000..ce5099f --- /dev/null +++ b/public/organe/PO384384.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384384", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO384385.json b/public/organe/PO384385.json new file mode 100644 index 0000000..4454b48 --- /dev/null +++ b/public/organe/PO384385.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384385", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO384386.json b/public/organe/PO384386.json new file mode 100644 index 0000000..5f8a6d6 --- /dev/null +++ b/public/organe/PO384386.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384386", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO384387.json b/public/organe/PO384387.json new file mode 100644 index 0000000..63fd9a5 --- /dev/null +++ b/public/organe/PO384387.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384387", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384388.json b/public/organe/PO384388.json new file mode 100644 index 0000000..15ff5de --- /dev/null +++ b/public/organe/PO384388.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384388", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384389.json b/public/organe/PO384389.json new file mode 100644 index 0000000..75109c5 --- /dev/null +++ b/public/organe/PO384389.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384389", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384390.json b/public/organe/PO384390.json new file mode 100644 index 0000000..e397574 --- /dev/null +++ b/public/organe/PO384390.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384390", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384391.json b/public/organe/PO384391.json new file mode 100644 index 0000000..89918c8 --- /dev/null +++ b/public/organe/PO384391.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384391", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384392.json b/public/organe/PO384392.json new file mode 100644 index 0000000..91e6ea9 --- /dev/null +++ b/public/organe/PO384392.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384392", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384393.json b/public/organe/PO384393.json new file mode 100644 index 0000000..8487cf0 --- /dev/null +++ b/public/organe/PO384393.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384393", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384394.json b/public/organe/PO384394.json new file mode 100644 index 0000000..b5ff84f --- /dev/null +++ b/public/organe/PO384394.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384394", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384395.json b/public/organe/PO384395.json new file mode 100644 index 0000000..9c05988 --- /dev/null +++ b/public/organe/PO384395.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384395", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO384396.json b/public/organe/PO384396.json new file mode 100644 index 0000000..29ac476 --- /dev/null +++ b/public/organe/PO384396.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384396", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO384397.json b/public/organe/PO384397.json new file mode 100644 index 0000000..eb1b7cd --- /dev/null +++ b/public/organe/PO384397.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384397", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO384398.json b/public/organe/PO384398.json new file mode 100644 index 0000000..1dafba0 --- /dev/null +++ b/public/organe/PO384398.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384398", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO384399.json b/public/organe/PO384399.json new file mode 100644 index 0000000..9bca00e --- /dev/null +++ b/public/organe/PO384399.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384399", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO384400.json b/public/organe/PO384400.json new file mode 100644 index 0000000..7616e56 --- /dev/null +++ b/public/organe/PO384400.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384400", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384401.json b/public/organe/PO384401.json new file mode 100644 index 0000000..58e82ff --- /dev/null +++ b/public/organe/PO384401.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384401", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384402.json b/public/organe/PO384402.json new file mode 100644 index 0000000..f108032 --- /dev/null +++ b/public/organe/PO384402.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384402", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384403.json b/public/organe/PO384403.json new file mode 100644 index 0000000..8cc9ab6 --- /dev/null +++ b/public/organe/PO384403.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384403", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384404.json b/public/organe/PO384404.json new file mode 100644 index 0000000..1c0798f --- /dev/null +++ b/public/organe/PO384404.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384404", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384405.json b/public/organe/PO384405.json new file mode 100644 index 0000000..9201f8a --- /dev/null +++ b/public/organe/PO384405.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384405", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384406.json b/public/organe/PO384406.json new file mode 100644 index 0000000..c48ed47 --- /dev/null +++ b/public/organe/PO384406.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384406", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384407.json b/public/organe/PO384407.json new file mode 100644 index 0000000..a721557 --- /dev/null +++ b/public/organe/PO384407.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384407", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384408.json b/public/organe/PO384408.json new file mode 100644 index 0000000..2d2bb74 --- /dev/null +++ b/public/organe/PO384408.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384408", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO384409.json b/public/organe/PO384409.json new file mode 100644 index 0000000..05c9bae --- /dev/null +++ b/public/organe/PO384409.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384409", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO384410.json b/public/organe/PO384410.json new file mode 100644 index 0000000..cd3f341 --- /dev/null +++ b/public/organe/PO384410.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384410", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384411.json b/public/organe/PO384411.json new file mode 100644 index 0000000..80bec48 --- /dev/null +++ b/public/organe/PO384411.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384411", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384412.json b/public/organe/PO384412.json new file mode 100644 index 0000000..793782d --- /dev/null +++ b/public/organe/PO384412.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384412", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384413.json b/public/organe/PO384413.json new file mode 100644 index 0000000..09dd32c --- /dev/null +++ b/public/organe/PO384413.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384413", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384414.json b/public/organe/PO384414.json new file mode 100644 index 0000000..df73ca6 --- /dev/null +++ b/public/organe/PO384414.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384414", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384415.json b/public/organe/PO384415.json new file mode 100644 index 0000000..4a210bd --- /dev/null +++ b/public/organe/PO384415.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384415", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384416.json b/public/organe/PO384416.json new file mode 100644 index 0000000..4c11c75 --- /dev/null +++ b/public/organe/PO384416.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384416", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384417.json b/public/organe/PO384417.json new file mode 100644 index 0000000..2f45eeb --- /dev/null +++ b/public/organe/PO384417.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384417", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384418.json b/public/organe/PO384418.json new file mode 100644 index 0000000..31c659c --- /dev/null +++ b/public/organe/PO384418.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384418", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384419.json b/public/organe/PO384419.json new file mode 100644 index 0000000..1b38f29 --- /dev/null +++ b/public/organe/PO384419.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384419", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384420.json b/public/organe/PO384420.json new file mode 100644 index 0000000..6660df4 --- /dev/null +++ b/public/organe/PO384420.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384420", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO384421.json b/public/organe/PO384421.json new file mode 100644 index 0000000..fda1155 --- /dev/null +++ b/public/organe/PO384421.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384421", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO384422.json b/public/organe/PO384422.json new file mode 100644 index 0000000..a66f77c --- /dev/null +++ b/public/organe/PO384422.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384422", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO384423.json b/public/organe/PO384423.json new file mode 100644 index 0000000..513dc88 --- /dev/null +++ b/public/organe/PO384423.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384423", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO384424.json b/public/organe/PO384424.json new file mode 100644 index 0000000..ebdfa3a --- /dev/null +++ b/public/organe/PO384424.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384424", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO384425.json b/public/organe/PO384425.json new file mode 100644 index 0000000..df56429 --- /dev/null +++ b/public/organe/PO384425.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384425", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO384426.json b/public/organe/PO384426.json new file mode 100644 index 0000000..00fb6df --- /dev/null +++ b/public/organe/PO384426.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384426", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO384427.json b/public/organe/PO384427.json new file mode 100644 index 0000000..92bfc8f --- /dev/null +++ b/public/organe/PO384427.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384427", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO384428.json b/public/organe/PO384428.json new file mode 100644 index 0000000..8088634 --- /dev/null +++ b/public/organe/PO384428.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384428", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO384429.json b/public/organe/PO384429.json new file mode 100644 index 0000000..6d80687 --- /dev/null +++ b/public/organe/PO384429.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384429", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO384430.json b/public/organe/PO384430.json new file mode 100644 index 0000000..db3d8b4 --- /dev/null +++ b/public/organe/PO384430.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384430", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO384431.json b/public/organe/PO384431.json new file mode 100644 index 0000000..5e50020 --- /dev/null +++ b/public/organe/PO384431.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384431", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO384432.json b/public/organe/PO384432.json new file mode 100644 index 0000000..c8dba37 --- /dev/null +++ b/public/organe/PO384432.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384432", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO384433.json b/public/organe/PO384433.json new file mode 100644 index 0000000..ba6fa75 --- /dev/null +++ b/public/organe/PO384433.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384433", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO384434.json b/public/organe/PO384434.json new file mode 100644 index 0000000..94068da --- /dev/null +++ b/public/organe/PO384434.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384434", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO384435.json b/public/organe/PO384435.json new file mode 100644 index 0000000..cb224a3 --- /dev/null +++ b/public/organe/PO384435.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384435", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO384436.json b/public/organe/PO384436.json new file mode 100644 index 0000000..ef2fae1 --- /dev/null +++ b/public/organe/PO384436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384436", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO384437.json b/public/organe/PO384437.json new file mode 100644 index 0000000..8e94002 --- /dev/null +++ b/public/organe/PO384437.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384437", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO384438.json b/public/organe/PO384438.json new file mode 100644 index 0000000..279baa6 --- /dev/null +++ b/public/organe/PO384438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384438", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384439.json b/public/organe/PO384439.json new file mode 100644 index 0000000..ac9edd8 --- /dev/null +++ b/public/organe/PO384439.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384439", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384440.json b/public/organe/PO384440.json new file mode 100644 index 0000000..340020d --- /dev/null +++ b/public/organe/PO384440.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384440", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384441.json b/public/organe/PO384441.json new file mode 100644 index 0000000..f7afe57 --- /dev/null +++ b/public/organe/PO384441.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384441", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384442.json b/public/organe/PO384442.json new file mode 100644 index 0000000..3d9c61c --- /dev/null +++ b/public/organe/PO384442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384442", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384443.json b/public/organe/PO384443.json new file mode 100644 index 0000000..ad66af8 --- /dev/null +++ b/public/organe/PO384443.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384443", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384444.json b/public/organe/PO384444.json new file mode 100644 index 0000000..e60d8cf --- /dev/null +++ b/public/organe/PO384444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384444", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384445.json b/public/organe/PO384445.json new file mode 100644 index 0000000..0f95a68 --- /dev/null +++ b/public/organe/PO384445.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384445", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384446.json b/public/organe/PO384446.json new file mode 100644 index 0000000..4f2cfdb --- /dev/null +++ b/public/organe/PO384446.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384446", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384447.json b/public/organe/PO384447.json new file mode 100644 index 0000000..b5477ae --- /dev/null +++ b/public/organe/PO384447.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384447", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384448.json b/public/organe/PO384448.json new file mode 100644 index 0000000..e1fea15 --- /dev/null +++ b/public/organe/PO384448.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384448", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384449.json b/public/organe/PO384449.json new file mode 100644 index 0000000..2155db6 --- /dev/null +++ b/public/organe/PO384449.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384449", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384450.json b/public/organe/PO384450.json new file mode 100644 index 0000000..fa77743 --- /dev/null +++ b/public/organe/PO384450.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384450", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384451.json b/public/organe/PO384451.json new file mode 100644 index 0000000..7e13956 --- /dev/null +++ b/public/organe/PO384451.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384451", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384452.json b/public/organe/PO384452.json new file mode 100644 index 0000000..d5d473f --- /dev/null +++ b/public/organe/PO384452.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384452", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO384453.json b/public/organe/PO384453.json new file mode 100644 index 0000000..ef8337f --- /dev/null +++ b/public/organe/PO384453.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384453", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO384454.json b/public/organe/PO384454.json new file mode 100644 index 0000000..e9a9ea2 --- /dev/null +++ b/public/organe/PO384454.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384454", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO384455.json b/public/organe/PO384455.json new file mode 100644 index 0000000..891b967 --- /dev/null +++ b/public/organe/PO384455.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384455", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO384456.json b/public/organe/PO384456.json new file mode 100644 index 0000000..ac6a332 --- /dev/null +++ b/public/organe/PO384456.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384456", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO384457.json b/public/organe/PO384457.json new file mode 100644 index 0000000..cda2ad6 --- /dev/null +++ b/public/organe/PO384457.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384457", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO384458.json b/public/organe/PO384458.json new file mode 100644 index 0000000..f69542d --- /dev/null +++ b/public/organe/PO384458.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384458", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO384459.json b/public/organe/PO384459.json new file mode 100644 index 0000000..036cadf --- /dev/null +++ b/public/organe/PO384459.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384459", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO384460.json b/public/organe/PO384460.json new file mode 100644 index 0000000..988b2ef --- /dev/null +++ b/public/organe/PO384460.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384460", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO384461.json b/public/organe/PO384461.json new file mode 100644 index 0000000..cfb1b43 --- /dev/null +++ b/public/organe/PO384461.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384461", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384462.json b/public/organe/PO384462.json new file mode 100644 index 0000000..8c2b4a5 --- /dev/null +++ b/public/organe/PO384462.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384462", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384463.json b/public/organe/PO384463.json new file mode 100644 index 0000000..a9b4b4c --- /dev/null +++ b/public/organe/PO384463.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384463", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384464.json b/public/organe/PO384464.json new file mode 100644 index 0000000..8b1ef90 --- /dev/null +++ b/public/organe/PO384464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384464", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384465.json b/public/organe/PO384465.json new file mode 100644 index 0000000..9cbc814 --- /dev/null +++ b/public/organe/PO384465.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384465", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384466.json b/public/organe/PO384466.json new file mode 100644 index 0000000..787cf90 --- /dev/null +++ b/public/organe/PO384466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384466", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384467.json b/public/organe/PO384467.json new file mode 100644 index 0000000..ffbb22f --- /dev/null +++ b/public/organe/PO384467.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384467", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384468.json b/public/organe/PO384468.json new file mode 100644 index 0000000..33df073 --- /dev/null +++ b/public/organe/PO384468.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384468", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384469.json b/public/organe/PO384469.json new file mode 100644 index 0000000..a59a465 --- /dev/null +++ b/public/organe/PO384469.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384469", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384470.json b/public/organe/PO384470.json new file mode 100644 index 0000000..685ff63 --- /dev/null +++ b/public/organe/PO384470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384470", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384471.json b/public/organe/PO384471.json new file mode 100644 index 0000000..e321f6a --- /dev/null +++ b/public/organe/PO384471.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384471", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384472.json b/public/organe/PO384472.json new file mode 100644 index 0000000..59b15ad --- /dev/null +++ b/public/organe/PO384472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384472", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384473.json b/public/organe/PO384473.json new file mode 100644 index 0000000..3e5b633 --- /dev/null +++ b/public/organe/PO384473.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384473", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384474.json b/public/organe/PO384474.json new file mode 100644 index 0000000..c81f8fa --- /dev/null +++ b/public/organe/PO384474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384474", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384475.json b/public/organe/PO384475.json new file mode 100644 index 0000000..9f6c963 --- /dev/null +++ b/public/organe/PO384475.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384475", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384476.json b/public/organe/PO384476.json new file mode 100644 index 0000000..b40925d --- /dev/null +++ b/public/organe/PO384476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384476", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384477.json b/public/organe/PO384477.json new file mode 100644 index 0000000..3cd5117 --- /dev/null +++ b/public/organe/PO384477.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384477", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384478.json b/public/organe/PO384478.json new file mode 100644 index 0000000..cccd83b --- /dev/null +++ b/public/organe/PO384478.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384478", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384479.json b/public/organe/PO384479.json new file mode 100644 index 0000000..7e60caa --- /dev/null +++ b/public/organe/PO384479.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384479", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO384480.json b/public/organe/PO384480.json new file mode 100644 index 0000000..9556b01 --- /dev/null +++ b/public/organe/PO384480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384480", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO384481.json b/public/organe/PO384481.json new file mode 100644 index 0000000..6e8650a --- /dev/null +++ b/public/organe/PO384481.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384481", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO384482.json b/public/organe/PO384482.json new file mode 100644 index 0000000..45dec7c --- /dev/null +++ b/public/organe/PO384482.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384482", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO384483.json b/public/organe/PO384483.json new file mode 100644 index 0000000..1b79f08 --- /dev/null +++ b/public/organe/PO384483.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384483", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO384484.json b/public/organe/PO384484.json new file mode 100644 index 0000000..b7d8623 --- /dev/null +++ b/public/organe/PO384484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384484", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO384485.json b/public/organe/PO384485.json new file mode 100644 index 0000000..4a45381 --- /dev/null +++ b/public/organe/PO384485.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384485", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO384486.json b/public/organe/PO384486.json new file mode 100644 index 0000000..f9e0841 --- /dev/null +++ b/public/organe/PO384486.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384486", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO384487.json b/public/organe/PO384487.json new file mode 100644 index 0000000..5a23a59 --- /dev/null +++ b/public/organe/PO384487.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384487", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384488.json b/public/organe/PO384488.json new file mode 100644 index 0000000..634367e --- /dev/null +++ b/public/organe/PO384488.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384488", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384489.json b/public/organe/PO384489.json new file mode 100644 index 0000000..bfc0f7d --- /dev/null +++ b/public/organe/PO384489.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384489", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384490.json b/public/organe/PO384490.json new file mode 100644 index 0000000..31e3137 --- /dev/null +++ b/public/organe/PO384490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384490", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384491.json b/public/organe/PO384491.json new file mode 100644 index 0000000..7c8470a --- /dev/null +++ b/public/organe/PO384491.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384491", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO384492.json b/public/organe/PO384492.json new file mode 100644 index 0000000..6678475 --- /dev/null +++ b/public/organe/PO384492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384492", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384493.json b/public/organe/PO384493.json new file mode 100644 index 0000000..58dd0b2 --- /dev/null +++ b/public/organe/PO384493.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384493", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384494.json b/public/organe/PO384494.json new file mode 100644 index 0000000..297baea --- /dev/null +++ b/public/organe/PO384494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384494", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384495.json b/public/organe/PO384495.json new file mode 100644 index 0000000..75d113b --- /dev/null +++ b/public/organe/PO384495.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384495", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384496.json b/public/organe/PO384496.json new file mode 100644 index 0000000..2812403 --- /dev/null +++ b/public/organe/PO384496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384496", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384497.json b/public/organe/PO384497.json new file mode 100644 index 0000000..1cf387e --- /dev/null +++ b/public/organe/PO384497.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384497", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384498.json b/public/organe/PO384498.json new file mode 100644 index 0000000..643b759 --- /dev/null +++ b/public/organe/PO384498.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384498", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384499.json b/public/organe/PO384499.json new file mode 100644 index 0000000..639d8e4 --- /dev/null +++ b/public/organe/PO384499.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384499", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO384500.json b/public/organe/PO384500.json new file mode 100644 index 0000000..c26a6e2 --- /dev/null +++ b/public/organe/PO384500.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384500", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO384501.json b/public/organe/PO384501.json new file mode 100644 index 0000000..8031390 --- /dev/null +++ b/public/organe/PO384501.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384501", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO384502.json b/public/organe/PO384502.json new file mode 100644 index 0000000..64785a8 --- /dev/null +++ b/public/organe/PO384502.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384502", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO384503.json b/public/organe/PO384503.json new file mode 100644 index 0000000..292dc79 --- /dev/null +++ b/public/organe/PO384503.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384503", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO384504.json b/public/organe/PO384504.json new file mode 100644 index 0000000..6707b4d --- /dev/null +++ b/public/organe/PO384504.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384504", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384505.json b/public/organe/PO384505.json new file mode 100644 index 0000000..61eb7e2 --- /dev/null +++ b/public/organe/PO384505.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384505", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384506.json b/public/organe/PO384506.json new file mode 100644 index 0000000..864afdb --- /dev/null +++ b/public/organe/PO384506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384506", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384507.json b/public/organe/PO384507.json new file mode 100644 index 0000000..45e730d --- /dev/null +++ b/public/organe/PO384507.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384507", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384508.json b/public/organe/PO384508.json new file mode 100644 index 0000000..d0d6164 --- /dev/null +++ b/public/organe/PO384508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384508", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384509.json b/public/organe/PO384509.json new file mode 100644 index 0000000..83dd087 --- /dev/null +++ b/public/organe/PO384509.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384509", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384510.json b/public/organe/PO384510.json new file mode 100644 index 0000000..192caae --- /dev/null +++ b/public/organe/PO384510.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384510", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384511.json b/public/organe/PO384511.json new file mode 100644 index 0000000..d40c834 --- /dev/null +++ b/public/organe/PO384511.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384511", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384512.json b/public/organe/PO384512.json new file mode 100644 index 0000000..bf25df9 --- /dev/null +++ b/public/organe/PO384512.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384512", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO384513.json b/public/organe/PO384513.json new file mode 100644 index 0000000..14d7e4e --- /dev/null +++ b/public/organe/PO384513.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384513", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO384514.json b/public/organe/PO384514.json new file mode 100644 index 0000000..7d7cb27 --- /dev/null +++ b/public/organe/PO384514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384514", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO384515.json b/public/organe/PO384515.json new file mode 100644 index 0000000..8e8492d --- /dev/null +++ b/public/organe/PO384515.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384515", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384516.json b/public/organe/PO384516.json new file mode 100644 index 0000000..25b5d30 --- /dev/null +++ b/public/organe/PO384516.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384516", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384517.json b/public/organe/PO384517.json new file mode 100644 index 0000000..1357ece --- /dev/null +++ b/public/organe/PO384517.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384517", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384518.json b/public/organe/PO384518.json new file mode 100644 index 0000000..1a66db9 --- /dev/null +++ b/public/organe/PO384518.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384518", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384519.json b/public/organe/PO384519.json new file mode 100644 index 0000000..8d989ac --- /dev/null +++ b/public/organe/PO384519.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384519", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384520.json b/public/organe/PO384520.json new file mode 100644 index 0000000..a88da33 --- /dev/null +++ b/public/organe/PO384520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384520", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384521.json b/public/organe/PO384521.json new file mode 100644 index 0000000..6916e4c --- /dev/null +++ b/public/organe/PO384521.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384521", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384522.json b/public/organe/PO384522.json new file mode 100644 index 0000000..4f7b10a --- /dev/null +++ b/public/organe/PO384522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384522", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO384523.json b/public/organe/PO384523.json new file mode 100644 index 0000000..903efca --- /dev/null +++ b/public/organe/PO384523.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384523", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO384524.json b/public/organe/PO384524.json new file mode 100644 index 0000000..247c68e --- /dev/null +++ b/public/organe/PO384524.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384524", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO384525.json b/public/organe/PO384525.json new file mode 100644 index 0000000..38140aa --- /dev/null +++ b/public/organe/PO384525.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384525", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO384526.json b/public/organe/PO384526.json new file mode 100644 index 0000000..3580518 --- /dev/null +++ b/public/organe/PO384526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384526", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO384527.json b/public/organe/PO384527.json new file mode 100644 index 0000000..d03e588 --- /dev/null +++ b/public/organe/PO384527.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384527", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO384528.json b/public/organe/PO384528.json new file mode 100644 index 0000000..6af9e28 --- /dev/null +++ b/public/organe/PO384528.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384528", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO384529.json b/public/organe/PO384529.json new file mode 100644 index 0000000..30392d9 --- /dev/null +++ b/public/organe/PO384529.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384529", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO384530.json b/public/organe/PO384530.json new file mode 100644 index 0000000..b4dc75d --- /dev/null +++ b/public/organe/PO384530.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384530", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384531.json b/public/organe/PO384531.json new file mode 100644 index 0000000..0fa1a8b --- /dev/null +++ b/public/organe/PO384531.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384531", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384532.json b/public/organe/PO384532.json new file mode 100644 index 0000000..931681e --- /dev/null +++ b/public/organe/PO384532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384532", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384533.json b/public/organe/PO384533.json new file mode 100644 index 0000000..c61b8cd --- /dev/null +++ b/public/organe/PO384533.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384533", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384534.json b/public/organe/PO384534.json new file mode 100644 index 0000000..6f8bf8a --- /dev/null +++ b/public/organe/PO384534.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384534", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384535.json b/public/organe/PO384535.json new file mode 100644 index 0000000..419c55c --- /dev/null +++ b/public/organe/PO384535.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384535", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384536.json b/public/organe/PO384536.json new file mode 100644 index 0000000..421fc66 --- /dev/null +++ b/public/organe/PO384536.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384536", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384537.json b/public/organe/PO384537.json new file mode 100644 index 0000000..772294a --- /dev/null +++ b/public/organe/PO384537.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384537", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384538.json b/public/organe/PO384538.json new file mode 100644 index 0000000..5b93af5 --- /dev/null +++ b/public/organe/PO384538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384538", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384539.json b/public/organe/PO384539.json new file mode 100644 index 0000000..525f778 --- /dev/null +++ b/public/organe/PO384539.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384539", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO384540.json b/public/organe/PO384540.json new file mode 100644 index 0000000..b0f2f05 --- /dev/null +++ b/public/organe/PO384540.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384540", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO384541.json b/public/organe/PO384541.json new file mode 100644 index 0000000..4ba1c26 --- /dev/null +++ b/public/organe/PO384541.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384541", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO384542.json b/public/organe/PO384542.json new file mode 100644 index 0000000..859fa00 --- /dev/null +++ b/public/organe/PO384542.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384542", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO384543.json b/public/organe/PO384543.json new file mode 100644 index 0000000..6abe896 --- /dev/null +++ b/public/organe/PO384543.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384543", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384544.json b/public/organe/PO384544.json new file mode 100644 index 0000000..92fc009 --- /dev/null +++ b/public/organe/PO384544.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384544", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384545.json b/public/organe/PO384545.json new file mode 100644 index 0000000..210188f --- /dev/null +++ b/public/organe/PO384545.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384545", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384546.json b/public/organe/PO384546.json new file mode 100644 index 0000000..0c545ba --- /dev/null +++ b/public/organe/PO384546.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384546", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384547.json b/public/organe/PO384547.json new file mode 100644 index 0000000..7862f78 --- /dev/null +++ b/public/organe/PO384547.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384547", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384548.json b/public/organe/PO384548.json new file mode 100644 index 0000000..669cf9c --- /dev/null +++ b/public/organe/PO384548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384548", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384549.json b/public/organe/PO384549.json new file mode 100644 index 0000000..2f80d01 --- /dev/null +++ b/public/organe/PO384549.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384549", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384550.json b/public/organe/PO384550.json new file mode 100644 index 0000000..d63f6eb --- /dev/null +++ b/public/organe/PO384550.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384550", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384551.json b/public/organe/PO384551.json new file mode 100644 index 0000000..2f75f6e --- /dev/null +++ b/public/organe/PO384551.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384551", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384552.json b/public/organe/PO384552.json new file mode 100644 index 0000000..fc317be --- /dev/null +++ b/public/organe/PO384552.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384552", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384553.json b/public/organe/PO384553.json new file mode 100644 index 0000000..c4e183f --- /dev/null +++ b/public/organe/PO384553.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384553", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384554.json b/public/organe/PO384554.json new file mode 100644 index 0000000..7c0c338 --- /dev/null +++ b/public/organe/PO384554.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384554", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384555.json b/public/organe/PO384555.json new file mode 100644 index 0000000..061d7ce --- /dev/null +++ b/public/organe/PO384555.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384555", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384556.json b/public/organe/PO384556.json new file mode 100644 index 0000000..f29f82c --- /dev/null +++ b/public/organe/PO384556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384556", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384557.json b/public/organe/PO384557.json new file mode 100644 index 0000000..b0d014d --- /dev/null +++ b/public/organe/PO384557.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384557", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384558.json b/public/organe/PO384558.json new file mode 100644 index 0000000..80327e4 --- /dev/null +++ b/public/organe/PO384558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384558", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384559.json b/public/organe/PO384559.json new file mode 100644 index 0000000..f90d5a4 --- /dev/null +++ b/public/organe/PO384559.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384559", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384560.json b/public/organe/PO384560.json new file mode 100644 index 0000000..e5f2844 --- /dev/null +++ b/public/organe/PO384560.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384560", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384561.json b/public/organe/PO384561.json new file mode 100644 index 0000000..31ca2e1 --- /dev/null +++ b/public/organe/PO384561.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384561", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384562.json b/public/organe/PO384562.json new file mode 100644 index 0000000..7a2a6df --- /dev/null +++ b/public/organe/PO384562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384562", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384563.json b/public/organe/PO384563.json new file mode 100644 index 0000000..13c31ad --- /dev/null +++ b/public/organe/PO384563.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384563", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384564.json b/public/organe/PO384564.json new file mode 100644 index 0000000..bf9ca24 --- /dev/null +++ b/public/organe/PO384564.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384564", "codeType": "CIRCONSCRIPTION", "libelle": "22\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b022\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "22", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384565.json b/public/organe/PO384565.json new file mode 100644 index 0000000..d382241 --- /dev/null +++ b/public/organe/PO384565.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384565", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384566.json b/public/organe/PO384566.json new file mode 100644 index 0000000..f915bdd --- /dev/null +++ b/public/organe/PO384566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384566", "codeType": "CIRCONSCRIPTION", "libelle": "24\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b024\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "24", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO384567.json b/public/organe/PO384567.json new file mode 100644 index 0000000..6c77f3f --- /dev/null +++ b/public/organe/PO384567.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384567", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384568.json b/public/organe/PO384568.json new file mode 100644 index 0000000..dedc22e --- /dev/null +++ b/public/organe/PO384568.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384568", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384569.json b/public/organe/PO384569.json new file mode 100644 index 0000000..e1d450f --- /dev/null +++ b/public/organe/PO384569.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384569", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384570.json b/public/organe/PO384570.json new file mode 100644 index 0000000..4c1b40c --- /dev/null +++ b/public/organe/PO384570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384570", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384571.json b/public/organe/PO384571.json new file mode 100644 index 0000000..2257375 --- /dev/null +++ b/public/organe/PO384571.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384571", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384572.json b/public/organe/PO384572.json new file mode 100644 index 0000000..ece05b3 --- /dev/null +++ b/public/organe/PO384572.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384572", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384573.json b/public/organe/PO384573.json new file mode 100644 index 0000000..8b52f94 --- /dev/null +++ b/public/organe/PO384573.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384573", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384574.json b/public/organe/PO384574.json new file mode 100644 index 0000000..88756de --- /dev/null +++ b/public/organe/PO384574.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384574", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO384575.json b/public/organe/PO384575.json new file mode 100644 index 0000000..4a31f3b --- /dev/null +++ b/public/organe/PO384575.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384575", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO384576.json b/public/organe/PO384576.json new file mode 100644 index 0000000..3065520 --- /dev/null +++ b/public/organe/PO384576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384576", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO384577.json b/public/organe/PO384577.json new file mode 100644 index 0000000..b36f127 --- /dev/null +++ b/public/organe/PO384577.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384577", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384578.json b/public/organe/PO384578.json new file mode 100644 index 0000000..faa2b28 --- /dev/null +++ b/public/organe/PO384578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384578", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384579.json b/public/organe/PO384579.json new file mode 100644 index 0000000..49edafb --- /dev/null +++ b/public/organe/PO384579.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384579", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384580.json b/public/organe/PO384580.json new file mode 100644 index 0000000..a024643 --- /dev/null +++ b/public/organe/PO384580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384580", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384581.json b/public/organe/PO384581.json new file mode 100644 index 0000000..b04f6d4 --- /dev/null +++ b/public/organe/PO384581.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384581", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384582.json b/public/organe/PO384582.json new file mode 100644 index 0000000..50ca03b --- /dev/null +++ b/public/organe/PO384582.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384582", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384583.json b/public/organe/PO384583.json new file mode 100644 index 0000000..e9f88be --- /dev/null +++ b/public/organe/PO384583.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384583", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384584.json b/public/organe/PO384584.json new file mode 100644 index 0000000..c629e31 --- /dev/null +++ b/public/organe/PO384584.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384584", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384585.json b/public/organe/PO384585.json new file mode 100644 index 0000000..54d52af --- /dev/null +++ b/public/organe/PO384585.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384585", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384586.json b/public/organe/PO384586.json new file mode 100644 index 0000000..e59716a --- /dev/null +++ b/public/organe/PO384586.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384586", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384587.json b/public/organe/PO384587.json new file mode 100644 index 0000000..38284f3 --- /dev/null +++ b/public/organe/PO384587.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384587", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384588.json b/public/organe/PO384588.json new file mode 100644 index 0000000..61f6482 --- /dev/null +++ b/public/organe/PO384588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384588", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384589.json b/public/organe/PO384589.json new file mode 100644 index 0000000..7cc5f5c --- /dev/null +++ b/public/organe/PO384589.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384589", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384590.json b/public/organe/PO384590.json new file mode 100644 index 0000000..af15452 --- /dev/null +++ b/public/organe/PO384590.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384590", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO384591.json b/public/organe/PO384591.json new file mode 100644 index 0000000..6984957 --- /dev/null +++ b/public/organe/PO384591.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384591", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384592.json b/public/organe/PO384592.json new file mode 100644 index 0000000..3fc6df2 --- /dev/null +++ b/public/organe/PO384592.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384592", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384593.json b/public/organe/PO384593.json new file mode 100644 index 0000000..c64338e --- /dev/null +++ b/public/organe/PO384593.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384593", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384594.json b/public/organe/PO384594.json new file mode 100644 index 0000000..766b8ac --- /dev/null +++ b/public/organe/PO384594.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384594", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384595.json b/public/organe/PO384595.json new file mode 100644 index 0000000..996c4b8 --- /dev/null +++ b/public/organe/PO384595.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384595", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384596.json b/public/organe/PO384596.json new file mode 100644 index 0000000..5c52750 --- /dev/null +++ b/public/organe/PO384596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384596", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO384597.json b/public/organe/PO384597.json new file mode 100644 index 0000000..f9698c9 --- /dev/null +++ b/public/organe/PO384597.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384597", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO384598.json b/public/organe/PO384598.json new file mode 100644 index 0000000..25c5691 --- /dev/null +++ b/public/organe/PO384598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384598", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO384599.json b/public/organe/PO384599.json new file mode 100644 index 0000000..3ab980b --- /dev/null +++ b/public/organe/PO384599.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384599", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO384600.json b/public/organe/PO384600.json new file mode 100644 index 0000000..cc0abcd --- /dev/null +++ b/public/organe/PO384600.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384600", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO384601.json b/public/organe/PO384601.json new file mode 100644 index 0000000..1fe60c9 --- /dev/null +++ b/public/organe/PO384601.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384601", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO384602.json b/public/organe/PO384602.json new file mode 100644 index 0000000..e345735 --- /dev/null +++ b/public/organe/PO384602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384602", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO384603.json b/public/organe/PO384603.json new file mode 100644 index 0000000..c52e4ab --- /dev/null +++ b/public/organe/PO384603.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384603", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO384604.json b/public/organe/PO384604.json new file mode 100644 index 0000000..5c6ae45 --- /dev/null +++ b/public/organe/PO384604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384604", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO384605.json b/public/organe/PO384605.json new file mode 100644 index 0000000..455f1ec --- /dev/null +++ b/public/organe/PO384605.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384605", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO384606.json b/public/organe/PO384606.json new file mode 100644 index 0000000..d413144 --- /dev/null +++ b/public/organe/PO384606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384606", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO384607.json b/public/organe/PO384607.json new file mode 100644 index 0000000..7728cec --- /dev/null +++ b/public/organe/PO384607.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384607", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO384608.json b/public/organe/PO384608.json new file mode 100644 index 0000000..b5467ab --- /dev/null +++ b/public/organe/PO384608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384608", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO384609.json b/public/organe/PO384609.json new file mode 100644 index 0000000..44106b1 --- /dev/null +++ b/public/organe/PO384609.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384609", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO384610.json b/public/organe/PO384610.json new file mode 100644 index 0000000..eae61a3 --- /dev/null +++ b/public/organe/PO384610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384610", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384611.json b/public/organe/PO384611.json new file mode 100644 index 0000000..4bb29bc --- /dev/null +++ b/public/organe/PO384611.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384611", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384612.json b/public/organe/PO384612.json new file mode 100644 index 0000000..eb2fce8 --- /dev/null +++ b/public/organe/PO384612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384612", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384613.json b/public/organe/PO384613.json new file mode 100644 index 0000000..b4ff5c8 --- /dev/null +++ b/public/organe/PO384613.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384613", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384614.json b/public/organe/PO384614.json new file mode 100644 index 0000000..b1a4f65 --- /dev/null +++ b/public/organe/PO384614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384614", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384615.json b/public/organe/PO384615.json new file mode 100644 index 0000000..6ecbd8d --- /dev/null +++ b/public/organe/PO384615.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384615", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384616.json b/public/organe/PO384616.json new file mode 100644 index 0000000..9b6b65e --- /dev/null +++ b/public/organe/PO384616.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384616", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384617.json b/public/organe/PO384617.json new file mode 100644 index 0000000..29af35b --- /dev/null +++ b/public/organe/PO384617.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384617", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384618.json b/public/organe/PO384618.json new file mode 100644 index 0000000..2464139 --- /dev/null +++ b/public/organe/PO384618.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384618", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384619.json b/public/organe/PO384619.json new file mode 100644 index 0000000..ded7d2c --- /dev/null +++ b/public/organe/PO384619.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384619", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384620.json b/public/organe/PO384620.json new file mode 100644 index 0000000..65a1abe --- /dev/null +++ b/public/organe/PO384620.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384620", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384621.json b/public/organe/PO384621.json new file mode 100644 index 0000000..06e8fca --- /dev/null +++ b/public/organe/PO384621.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384621", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384622.json b/public/organe/PO384622.json new file mode 100644 index 0000000..816bd06 --- /dev/null +++ b/public/organe/PO384622.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384622", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384623.json b/public/organe/PO384623.json new file mode 100644 index 0000000..43a9b2d --- /dev/null +++ b/public/organe/PO384623.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384623", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384624.json b/public/organe/PO384624.json new file mode 100644 index 0000000..ebfaf31 --- /dev/null +++ b/public/organe/PO384624.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384624", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384625.json b/public/organe/PO384625.json new file mode 100644 index 0000000..93c5d9a --- /dev/null +++ b/public/organe/PO384625.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384625", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO384626.json b/public/organe/PO384626.json new file mode 100644 index 0000000..ea73a5d --- /dev/null +++ b/public/organe/PO384626.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384626", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384627.json b/public/organe/PO384627.json new file mode 100644 index 0000000..97a29bc --- /dev/null +++ b/public/organe/PO384627.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384627", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384628.json b/public/organe/PO384628.json new file mode 100644 index 0000000..ccb167e --- /dev/null +++ b/public/organe/PO384628.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384628", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384629.json b/public/organe/PO384629.json new file mode 100644 index 0000000..ed103e1 --- /dev/null +++ b/public/organe/PO384629.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384629", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384630.json b/public/organe/PO384630.json new file mode 100644 index 0000000..badb337 --- /dev/null +++ b/public/organe/PO384630.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384630", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384631.json b/public/organe/PO384631.json new file mode 100644 index 0000000..466867d --- /dev/null +++ b/public/organe/PO384631.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384631", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384632.json b/public/organe/PO384632.json new file mode 100644 index 0000000..0ea72b3 --- /dev/null +++ b/public/organe/PO384632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384632", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384633.json b/public/organe/PO384633.json new file mode 100644 index 0000000..f3b9060 --- /dev/null +++ b/public/organe/PO384633.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384633", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384634.json b/public/organe/PO384634.json new file mode 100644 index 0000000..c707599 --- /dev/null +++ b/public/organe/PO384634.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384634", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384635.json b/public/organe/PO384635.json new file mode 100644 index 0000000..f83ad0e --- /dev/null +++ b/public/organe/PO384635.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384635", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384636.json b/public/organe/PO384636.json new file mode 100644 index 0000000..3a57d75 --- /dev/null +++ b/public/organe/PO384636.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384636", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384637.json b/public/organe/PO384637.json new file mode 100644 index 0000000..743c86e --- /dev/null +++ b/public/organe/PO384637.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384637", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384638.json b/public/organe/PO384638.json new file mode 100644 index 0000000..05653b3 --- /dev/null +++ b/public/organe/PO384638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384638", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384639.json b/public/organe/PO384639.json new file mode 100644 index 0000000..8dea2ef --- /dev/null +++ b/public/organe/PO384639.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384639", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384640.json b/public/organe/PO384640.json new file mode 100644 index 0000000..78a9a84 --- /dev/null +++ b/public/organe/PO384640.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384640", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384641.json b/public/organe/PO384641.json new file mode 100644 index 0000000..c59bbc2 --- /dev/null +++ b/public/organe/PO384641.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384641", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384642.json b/public/organe/PO384642.json new file mode 100644 index 0000000..91efc65 --- /dev/null +++ b/public/organe/PO384642.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384642", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO384643.json b/public/organe/PO384643.json new file mode 100644 index 0000000..c2b4ae4 --- /dev/null +++ b/public/organe/PO384643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384643", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384644.json b/public/organe/PO384644.json new file mode 100644 index 0000000..53b5d2b --- /dev/null +++ b/public/organe/PO384644.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384644", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384645.json b/public/organe/PO384645.json new file mode 100644 index 0000000..e2066f4 --- /dev/null +++ b/public/organe/PO384645.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384645", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384646.json b/public/organe/PO384646.json new file mode 100644 index 0000000..f1daf0a --- /dev/null +++ b/public/organe/PO384646.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384646", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384647.json b/public/organe/PO384647.json new file mode 100644 index 0000000..3680f03 --- /dev/null +++ b/public/organe/PO384647.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384647", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384648.json b/public/organe/PO384648.json new file mode 100644 index 0000000..91cfbfc --- /dev/null +++ b/public/organe/PO384648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384648", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO384649.json b/public/organe/PO384649.json new file mode 100644 index 0000000..59bb2b1 --- /dev/null +++ b/public/organe/PO384649.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384649", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO384650.json b/public/organe/PO384650.json new file mode 100644 index 0000000..ca50213 --- /dev/null +++ b/public/organe/PO384650.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384650", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO384651.json b/public/organe/PO384651.json new file mode 100644 index 0000000..8b7bc92 --- /dev/null +++ b/public/organe/PO384651.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384651", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO384652.json b/public/organe/PO384652.json new file mode 100644 index 0000000..5b9f44a --- /dev/null +++ b/public/organe/PO384652.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384652", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO384653.json b/public/organe/PO384653.json new file mode 100644 index 0000000..ad3bae3 --- /dev/null +++ b/public/organe/PO384653.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384653", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO384654.json b/public/organe/PO384654.json new file mode 100644 index 0000000..0b5de94 --- /dev/null +++ b/public/organe/PO384654.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384654", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO384655.json b/public/organe/PO384655.json new file mode 100644 index 0000000..1317f61 --- /dev/null +++ b/public/organe/PO384655.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384655", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO384656.json b/public/organe/PO384656.json new file mode 100644 index 0000000..5810f94 --- /dev/null +++ b/public/organe/PO384656.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384656", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO384657.json b/public/organe/PO384657.json new file mode 100644 index 0000000..a1d2d45 --- /dev/null +++ b/public/organe/PO384657.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384657", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO384658.json b/public/organe/PO384658.json new file mode 100644 index 0000000..ac74298 --- /dev/null +++ b/public/organe/PO384658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384658", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO384659.json b/public/organe/PO384659.json new file mode 100644 index 0000000..635a9c0 --- /dev/null +++ b/public/organe/PO384659.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384659", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO384660.json b/public/organe/PO384660.json new file mode 100644 index 0000000..eb116d7 --- /dev/null +++ b/public/organe/PO384660.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384660", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO384661.json b/public/organe/PO384661.json new file mode 100644 index 0000000..e42f81f --- /dev/null +++ b/public/organe/PO384661.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384661", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO384662.json b/public/organe/PO384662.json new file mode 100644 index 0000000..ddd2f55 --- /dev/null +++ b/public/organe/PO384662.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384662", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384663.json b/public/organe/PO384663.json new file mode 100644 index 0000000..4629a3d --- /dev/null +++ b/public/organe/PO384663.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384663", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384664.json b/public/organe/PO384664.json new file mode 100644 index 0000000..3cd7ea0 --- /dev/null +++ b/public/organe/PO384664.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384664", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384665.json b/public/organe/PO384665.json new file mode 100644 index 0000000..88f87d2 --- /dev/null +++ b/public/organe/PO384665.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384665", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384666.json b/public/organe/PO384666.json new file mode 100644 index 0000000..4ad2fc0 --- /dev/null +++ b/public/organe/PO384666.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384666", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384667.json b/public/organe/PO384667.json new file mode 100644 index 0000000..09c6b0d --- /dev/null +++ b/public/organe/PO384667.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384667", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384668.json b/public/organe/PO384668.json new file mode 100644 index 0000000..f78a623 --- /dev/null +++ b/public/organe/PO384668.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384668", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384669.json b/public/organe/PO384669.json new file mode 100644 index 0000000..ee7be02 --- /dev/null +++ b/public/organe/PO384669.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384669", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384670.json b/public/organe/PO384670.json new file mode 100644 index 0000000..35849c1 --- /dev/null +++ b/public/organe/PO384670.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384670", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384671.json b/public/organe/PO384671.json new file mode 100644 index 0000000..961ea0e --- /dev/null +++ b/public/organe/PO384671.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384671", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384672.json b/public/organe/PO384672.json new file mode 100644 index 0000000..f4b3e26 --- /dev/null +++ b/public/organe/PO384672.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384672", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384673.json b/public/organe/PO384673.json new file mode 100644 index 0000000..68e737c --- /dev/null +++ b/public/organe/PO384673.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384673", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384674.json b/public/organe/PO384674.json new file mode 100644 index 0000000..ff8b659 --- /dev/null +++ b/public/organe/PO384674.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384674", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384675.json b/public/organe/PO384675.json new file mode 100644 index 0000000..58e8ac1 --- /dev/null +++ b/public/organe/PO384675.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384675", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384676.json b/public/organe/PO384676.json new file mode 100644 index 0000000..6adb326 --- /dev/null +++ b/public/organe/PO384676.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384676", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384677.json b/public/organe/PO384677.json new file mode 100644 index 0000000..621d69b --- /dev/null +++ b/public/organe/PO384677.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384677", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384678.json b/public/organe/PO384678.json new file mode 100644 index 0000000..64415e3 --- /dev/null +++ b/public/organe/PO384678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384678", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384679.json b/public/organe/PO384679.json new file mode 100644 index 0000000..587dcdd --- /dev/null +++ b/public/organe/PO384679.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384679", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384680.json b/public/organe/PO384680.json new file mode 100644 index 0000000..3722a3a --- /dev/null +++ b/public/organe/PO384680.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384680", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384681.json b/public/organe/PO384681.json new file mode 100644 index 0000000..3952bdd --- /dev/null +++ b/public/organe/PO384681.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384681", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384682.json b/public/organe/PO384682.json new file mode 100644 index 0000000..1649168 --- /dev/null +++ b/public/organe/PO384682.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384682", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO384683.json b/public/organe/PO384683.json new file mode 100644 index 0000000..b8a4931 --- /dev/null +++ b/public/organe/PO384683.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384683", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384684.json b/public/organe/PO384684.json new file mode 100644 index 0000000..b25db51 --- /dev/null +++ b/public/organe/PO384684.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384684", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384685.json b/public/organe/PO384685.json new file mode 100644 index 0000000..c318f68 --- /dev/null +++ b/public/organe/PO384685.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384685", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384686.json b/public/organe/PO384686.json new file mode 100644 index 0000000..7f54cd5 --- /dev/null +++ b/public/organe/PO384686.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384686", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384687.json b/public/organe/PO384687.json new file mode 100644 index 0000000..d526689 --- /dev/null +++ b/public/organe/PO384687.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384687", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384688.json b/public/organe/PO384688.json new file mode 100644 index 0000000..16e964d --- /dev/null +++ b/public/organe/PO384688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384688", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384689.json b/public/organe/PO384689.json new file mode 100644 index 0000000..eda5c93 --- /dev/null +++ b/public/organe/PO384689.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384689", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384690.json b/public/organe/PO384690.json new file mode 100644 index 0000000..540f1d0 --- /dev/null +++ b/public/organe/PO384690.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384690", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384691.json b/public/organe/PO384691.json new file mode 100644 index 0000000..81f0faf --- /dev/null +++ b/public/organe/PO384691.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384691", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384692.json b/public/organe/PO384692.json new file mode 100644 index 0000000..9b079e2 --- /dev/null +++ b/public/organe/PO384692.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384692", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384693.json b/public/organe/PO384693.json new file mode 100644 index 0000000..ba47079 --- /dev/null +++ b/public/organe/PO384693.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384693", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384694.json b/public/organe/PO384694.json new file mode 100644 index 0000000..4d5997e --- /dev/null +++ b/public/organe/PO384694.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384694", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO384695.json b/public/organe/PO384695.json new file mode 100644 index 0000000..6cdbec9 --- /dev/null +++ b/public/organe/PO384695.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384695", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384696.json b/public/organe/PO384696.json new file mode 100644 index 0000000..be81531 --- /dev/null +++ b/public/organe/PO384696.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384696", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384697.json b/public/organe/PO384697.json new file mode 100644 index 0000000..f2178d7 --- /dev/null +++ b/public/organe/PO384697.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384697", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384698.json b/public/organe/PO384698.json new file mode 100644 index 0000000..e2381ab --- /dev/null +++ b/public/organe/PO384698.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384698", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384699.json b/public/organe/PO384699.json new file mode 100644 index 0000000..4e532e2 --- /dev/null +++ b/public/organe/PO384699.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384699", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384700.json b/public/organe/PO384700.json new file mode 100644 index 0000000..27cdaa8 --- /dev/null +++ b/public/organe/PO384700.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384700", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384701.json b/public/organe/PO384701.json new file mode 100644 index 0000000..6b6bdcb --- /dev/null +++ b/public/organe/PO384701.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384701", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384702.json b/public/organe/PO384702.json new file mode 100644 index 0000000..20023e2 --- /dev/null +++ b/public/organe/PO384702.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384702", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384703.json b/public/organe/PO384703.json new file mode 100644 index 0000000..1286db7 --- /dev/null +++ b/public/organe/PO384703.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384703", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384704.json b/public/organe/PO384704.json new file mode 100644 index 0000000..a2e8462 --- /dev/null +++ b/public/organe/PO384704.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384704", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384705.json b/public/organe/PO384705.json new file mode 100644 index 0000000..5337cec --- /dev/null +++ b/public/organe/PO384705.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384705", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384706.json b/public/organe/PO384706.json new file mode 100644 index 0000000..f7ce098 --- /dev/null +++ b/public/organe/PO384706.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384706", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384707.json b/public/organe/PO384707.json new file mode 100644 index 0000000..c7fca87 --- /dev/null +++ b/public/organe/PO384707.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384707", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384708.json b/public/organe/PO384708.json new file mode 100644 index 0000000..9fe0cc5 --- /dev/null +++ b/public/organe/PO384708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384708", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384709.json b/public/organe/PO384709.json new file mode 100644 index 0000000..f50dc9e --- /dev/null +++ b/public/organe/PO384709.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384709", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384710.json b/public/organe/PO384710.json new file mode 100644 index 0000000..e5685df --- /dev/null +++ b/public/organe/PO384710.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384710", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384711.json b/public/organe/PO384711.json new file mode 100644 index 0000000..18826a8 --- /dev/null +++ b/public/organe/PO384711.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384711", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384712.json b/public/organe/PO384712.json new file mode 100644 index 0000000..f32f136 --- /dev/null +++ b/public/organe/PO384712.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384712", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384713.json b/public/organe/PO384713.json new file mode 100644 index 0000000..2874ec9 --- /dev/null +++ b/public/organe/PO384713.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384713", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384714.json b/public/organe/PO384714.json new file mode 100644 index 0000000..79fa208 --- /dev/null +++ b/public/organe/PO384714.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384714", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384715.json b/public/organe/PO384715.json new file mode 100644 index 0000000..45e28fb --- /dev/null +++ b/public/organe/PO384715.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384715", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO384716.json b/public/organe/PO384716.json new file mode 100644 index 0000000..58bd4dc --- /dev/null +++ b/public/organe/PO384716.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384716", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO384717.json b/public/organe/PO384717.json new file mode 100644 index 0000000..e0fd0cc --- /dev/null +++ b/public/organe/PO384717.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384717", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO384718.json b/public/organe/PO384718.json new file mode 100644 index 0000000..5dbb9bb --- /dev/null +++ b/public/organe/PO384718.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384718", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO384719.json b/public/organe/PO384719.json new file mode 100644 index 0000000..4ff4c2d --- /dev/null +++ b/public/organe/PO384719.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384719", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO384720.json b/public/organe/PO384720.json new file mode 100644 index 0000000..22b4834 --- /dev/null +++ b/public/organe/PO384720.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384720", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO384721.json b/public/organe/PO384721.json new file mode 100644 index 0000000..bfe9a45 --- /dev/null +++ b/public/organe/PO384721.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384721", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO384722.json b/public/organe/PO384722.json new file mode 100644 index 0000000..3cbfaa4 --- /dev/null +++ b/public/organe/PO384722.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384722", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO384723.json b/public/organe/PO384723.json new file mode 100644 index 0000000..398f309 --- /dev/null +++ b/public/organe/PO384723.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384723", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO384724.json b/public/organe/PO384724.json new file mode 100644 index 0000000..f8795a0 --- /dev/null +++ b/public/organe/PO384724.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384724", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO384725.json b/public/organe/PO384725.json new file mode 100644 index 0000000..40e3f0d --- /dev/null +++ b/public/organe/PO384725.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384725", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO384726.json b/public/organe/PO384726.json new file mode 100644 index 0000000..bfe627d --- /dev/null +++ b/public/organe/PO384726.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384726", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO384727.json b/public/organe/PO384727.json new file mode 100644 index 0000000..88cad00 --- /dev/null +++ b/public/organe/PO384727.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384727", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO384728.json b/public/organe/PO384728.json new file mode 100644 index 0000000..660317f --- /dev/null +++ b/public/organe/PO384728.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384728", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO384729.json b/public/organe/PO384729.json new file mode 100644 index 0000000..c649a09 --- /dev/null +++ b/public/organe/PO384729.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384729", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO384730.json b/public/organe/PO384730.json new file mode 100644 index 0000000..9247a75 --- /dev/null +++ b/public/organe/PO384730.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384730", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384731.json b/public/organe/PO384731.json new file mode 100644 index 0000000..f18231a --- /dev/null +++ b/public/organe/PO384731.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384731", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384732.json b/public/organe/PO384732.json new file mode 100644 index 0000000..76bae2f --- /dev/null +++ b/public/organe/PO384732.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384732", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO384733.json b/public/organe/PO384733.json new file mode 100644 index 0000000..727c697 --- /dev/null +++ b/public/organe/PO384733.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384733", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO384734.json b/public/organe/PO384734.json new file mode 100644 index 0000000..5da61df --- /dev/null +++ b/public/organe/PO384734.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384734", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO384735.json b/public/organe/PO384735.json new file mode 100644 index 0000000..a1d8496 --- /dev/null +++ b/public/organe/PO384735.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384735", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO384736.json b/public/organe/PO384736.json new file mode 100644 index 0000000..c6c0a18 --- /dev/null +++ b/public/organe/PO384736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384736", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO384737.json b/public/organe/PO384737.json new file mode 100644 index 0000000..7c552a5 --- /dev/null +++ b/public/organe/PO384737.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384737", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO384738.json b/public/organe/PO384738.json new file mode 100644 index 0000000..990d64e --- /dev/null +++ b/public/organe/PO384738.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384738", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO384739.json b/public/organe/PO384739.json new file mode 100644 index 0000000..8ecded7 --- /dev/null +++ b/public/organe/PO384739.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384739", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO384740.json b/public/organe/PO384740.json new file mode 100644 index 0000000..eca66e0 --- /dev/null +++ b/public/organe/PO384740.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384740", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO384741.json b/public/organe/PO384741.json new file mode 100644 index 0000000..9e31dbb --- /dev/null +++ b/public/organe/PO384741.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384741", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO384742.json b/public/organe/PO384742.json new file mode 100644 index 0000000..8ac2664 --- /dev/null +++ b/public/organe/PO384742.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384742", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO384743.json b/public/organe/PO384743.json new file mode 100644 index 0000000..ab7614c --- /dev/null +++ b/public/organe/PO384743.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384743", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO384744.json b/public/organe/PO384744.json new file mode 100644 index 0000000..2e23521 --- /dev/null +++ b/public/organe/PO384744.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384744", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO384745.json b/public/organe/PO384745.json new file mode 100644 index 0000000..44f1a24 --- /dev/null +++ b/public/organe/PO384745.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384745", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO384746.json b/public/organe/PO384746.json new file mode 100644 index 0000000..94ba978 --- /dev/null +++ b/public/organe/PO384746.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384746", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO384747.json b/public/organe/PO384747.json new file mode 100644 index 0000000..a905826 --- /dev/null +++ b/public/organe/PO384747.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384747", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO384748.json b/public/organe/PO384748.json new file mode 100644 index 0000000..27c9016 --- /dev/null +++ b/public/organe/PO384748.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384748", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO384749.json b/public/organe/PO384749.json new file mode 100644 index 0000000..3624ce1 --- /dev/null +++ b/public/organe/PO384749.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384749", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO384750.json b/public/organe/PO384750.json new file mode 100644 index 0000000..c4aae10 --- /dev/null +++ b/public/organe/PO384750.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384750", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO384751.json b/public/organe/PO384751.json new file mode 100644 index 0000000..8be5e21 --- /dev/null +++ b/public/organe/PO384751.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384751", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO384752.json b/public/organe/PO384752.json new file mode 100644 index 0000000..b487219 --- /dev/null +++ b/public/organe/PO384752.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384752", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO384753.json b/public/organe/PO384753.json new file mode 100644 index 0000000..a633770 --- /dev/null +++ b/public/organe/PO384753.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384753", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO384754.json b/public/organe/PO384754.json new file mode 100644 index 0000000..0feda13 --- /dev/null +++ b/public/organe/PO384754.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384754", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO384755.json b/public/organe/PO384755.json new file mode 100644 index 0000000..4f29e3c --- /dev/null +++ b/public/organe/PO384755.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384755", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO384756.json b/public/organe/PO384756.json new file mode 100644 index 0000000..10a2d72 --- /dev/null +++ b/public/organe/PO384756.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384756", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO384757.json b/public/organe/PO384757.json new file mode 100644 index 0000000..67483d7 --- /dev/null +++ b/public/organe/PO384757.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384757", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO384758.json b/public/organe/PO384758.json new file mode 100644 index 0000000..3ef36d0 --- /dev/null +++ b/public/organe/PO384758.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384758", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO384759.json b/public/organe/PO384759.json new file mode 100644 index 0000000..0b5d105 --- /dev/null +++ b/public/organe/PO384759.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384759", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO384760.json b/public/organe/PO384760.json new file mode 100644 index 0000000..bf77d44 --- /dev/null +++ b/public/organe/PO384760.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384760", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384761.json b/public/organe/PO384761.json new file mode 100644 index 0000000..a90805c --- /dev/null +++ b/public/organe/PO384761.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384761", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384762.json b/public/organe/PO384762.json new file mode 100644 index 0000000..dd082f0 --- /dev/null +++ b/public/organe/PO384762.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384762", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384763.json b/public/organe/PO384763.json new file mode 100644 index 0000000..aea60c5 --- /dev/null +++ b/public/organe/PO384763.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384763", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO384764.json b/public/organe/PO384764.json new file mode 100644 index 0000000..709b33a --- /dev/null +++ b/public/organe/PO384764.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384764", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO384765.json b/public/organe/PO384765.json new file mode 100644 index 0000000..51040f9 --- /dev/null +++ b/public/organe/PO384765.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384765", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384766.json b/public/organe/PO384766.json new file mode 100644 index 0000000..2322651 --- /dev/null +++ b/public/organe/PO384766.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384766", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384767.json b/public/organe/PO384767.json new file mode 100644 index 0000000..182ea09 --- /dev/null +++ b/public/organe/PO384767.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384767", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384768.json b/public/organe/PO384768.json new file mode 100644 index 0000000..f9f2cf6 --- /dev/null +++ b/public/organe/PO384768.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384768", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384769.json b/public/organe/PO384769.json new file mode 100644 index 0000000..21ae78e --- /dev/null +++ b/public/organe/PO384769.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384769", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384770.json b/public/organe/PO384770.json new file mode 100644 index 0000000..9a20410 --- /dev/null +++ b/public/organe/PO384770.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384770", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384771.json b/public/organe/PO384771.json new file mode 100644 index 0000000..41dd61e --- /dev/null +++ b/public/organe/PO384771.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384771", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384772.json b/public/organe/PO384772.json new file mode 100644 index 0000000..5bae8d3 --- /dev/null +++ b/public/organe/PO384772.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384772", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384773.json b/public/organe/PO384773.json new file mode 100644 index 0000000..591f27d --- /dev/null +++ b/public/organe/PO384773.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384773", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384774.json b/public/organe/PO384774.json new file mode 100644 index 0000000..aae7801 --- /dev/null +++ b/public/organe/PO384774.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384774", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO384775.json b/public/organe/PO384775.json new file mode 100644 index 0000000..3997277 --- /dev/null +++ b/public/organe/PO384775.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384775", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384776.json b/public/organe/PO384776.json new file mode 100644 index 0000000..cde4962 --- /dev/null +++ b/public/organe/PO384776.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384776", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384777.json b/public/organe/PO384777.json new file mode 100644 index 0000000..4714ed7 --- /dev/null +++ b/public/organe/PO384777.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384777", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384778.json b/public/organe/PO384778.json new file mode 100644 index 0000000..a6593c7 --- /dev/null +++ b/public/organe/PO384778.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384778", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384779.json b/public/organe/PO384779.json new file mode 100644 index 0000000..1e4fd66 --- /dev/null +++ b/public/organe/PO384779.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384779", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384780.json b/public/organe/PO384780.json new file mode 100644 index 0000000..78a2ed5 --- /dev/null +++ b/public/organe/PO384780.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384780", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384781.json b/public/organe/PO384781.json new file mode 100644 index 0000000..4ff4027 --- /dev/null +++ b/public/organe/PO384781.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384781", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384782.json b/public/organe/PO384782.json new file mode 100644 index 0000000..b927bac --- /dev/null +++ b/public/organe/PO384782.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384782", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384783.json b/public/organe/PO384783.json new file mode 100644 index 0000000..3905481 --- /dev/null +++ b/public/organe/PO384783.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384783", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384784.json b/public/organe/PO384784.json new file mode 100644 index 0000000..debe1c1 --- /dev/null +++ b/public/organe/PO384784.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384784", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384785.json b/public/organe/PO384785.json new file mode 100644 index 0000000..c9652be --- /dev/null +++ b/public/organe/PO384785.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384785", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384786.json b/public/organe/PO384786.json new file mode 100644 index 0000000..9f87d96 --- /dev/null +++ b/public/organe/PO384786.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384786", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384787.json b/public/organe/PO384787.json new file mode 100644 index 0000000..45ad70f --- /dev/null +++ b/public/organe/PO384787.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384787", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO384788.json b/public/organe/PO384788.json new file mode 100644 index 0000000..9e46559 --- /dev/null +++ b/public/organe/PO384788.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384788", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384789.json b/public/organe/PO384789.json new file mode 100644 index 0000000..a807073 --- /dev/null +++ b/public/organe/PO384789.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384789", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384790.json b/public/organe/PO384790.json new file mode 100644 index 0000000..1943547 --- /dev/null +++ b/public/organe/PO384790.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384790", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384791.json b/public/organe/PO384791.json new file mode 100644 index 0000000..2ae395c --- /dev/null +++ b/public/organe/PO384791.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384791", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384792.json b/public/organe/PO384792.json new file mode 100644 index 0000000..2a458dd --- /dev/null +++ b/public/organe/PO384792.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384792", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384793.json b/public/organe/PO384793.json new file mode 100644 index 0000000..dc96aeb --- /dev/null +++ b/public/organe/PO384793.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384793", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384794.json b/public/organe/PO384794.json new file mode 100644 index 0000000..cf1e8e7 --- /dev/null +++ b/public/organe/PO384794.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384794", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384795.json b/public/organe/PO384795.json new file mode 100644 index 0000000..6739259 --- /dev/null +++ b/public/organe/PO384795.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384795", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384796.json b/public/organe/PO384796.json new file mode 100644 index 0000000..1bba5f1 --- /dev/null +++ b/public/organe/PO384796.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384796", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384797.json b/public/organe/PO384797.json new file mode 100644 index 0000000..c364a5f --- /dev/null +++ b/public/organe/PO384797.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384797", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384798.json b/public/organe/PO384798.json new file mode 100644 index 0000000..817c2de --- /dev/null +++ b/public/organe/PO384798.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384798", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384799.json b/public/organe/PO384799.json new file mode 100644 index 0000000..0584ad9 --- /dev/null +++ b/public/organe/PO384799.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384799", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384800.json b/public/organe/PO384800.json new file mode 100644 index 0000000..64b770a --- /dev/null +++ b/public/organe/PO384800.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384800", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO384801.json b/public/organe/PO384801.json new file mode 100644 index 0000000..95bcf2b --- /dev/null +++ b/public/organe/PO384801.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384801", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384802.json b/public/organe/PO384802.json new file mode 100644 index 0000000..39cf816 --- /dev/null +++ b/public/organe/PO384802.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384802", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384803.json b/public/organe/PO384803.json new file mode 100644 index 0000000..ee73aff --- /dev/null +++ b/public/organe/PO384803.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384803", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384804.json b/public/organe/PO384804.json new file mode 100644 index 0000000..737d9f3 --- /dev/null +++ b/public/organe/PO384804.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384804", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384805.json b/public/organe/PO384805.json new file mode 100644 index 0000000..c53d705 --- /dev/null +++ b/public/organe/PO384805.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384805", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384806.json b/public/organe/PO384806.json new file mode 100644 index 0000000..00cb2c1 --- /dev/null +++ b/public/organe/PO384806.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384806", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384807.json b/public/organe/PO384807.json new file mode 100644 index 0000000..370676c --- /dev/null +++ b/public/organe/PO384807.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384807", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384808.json b/public/organe/PO384808.json new file mode 100644 index 0000000..33b0e2a --- /dev/null +++ b/public/organe/PO384808.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384808", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384809.json b/public/organe/PO384809.json new file mode 100644 index 0000000..49fd29c --- /dev/null +++ b/public/organe/PO384809.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384809", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384810.json b/public/organe/PO384810.json new file mode 100644 index 0000000..5de76c1 --- /dev/null +++ b/public/organe/PO384810.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384810", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384811.json b/public/organe/PO384811.json new file mode 100644 index 0000000..f1a62da --- /dev/null +++ b/public/organe/PO384811.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384811", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384812.json b/public/organe/PO384812.json new file mode 100644 index 0000000..ee7b166 --- /dev/null +++ b/public/organe/PO384812.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384812", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO384813.json b/public/organe/PO384813.json new file mode 100644 index 0000000..56e1ab9 --- /dev/null +++ b/public/organe/PO384813.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384813", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384814.json b/public/organe/PO384814.json new file mode 100644 index 0000000..34843cd --- /dev/null +++ b/public/organe/PO384814.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384814", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384815.json b/public/organe/PO384815.json new file mode 100644 index 0000000..c3c5815 --- /dev/null +++ b/public/organe/PO384815.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384815", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384816.json b/public/organe/PO384816.json new file mode 100644 index 0000000..20c9aa1 --- /dev/null +++ b/public/organe/PO384816.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384816", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384817.json b/public/organe/PO384817.json new file mode 100644 index 0000000..614b70d --- /dev/null +++ b/public/organe/PO384817.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384817", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384818.json b/public/organe/PO384818.json new file mode 100644 index 0000000..4112c4b --- /dev/null +++ b/public/organe/PO384818.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384818", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384819.json b/public/organe/PO384819.json new file mode 100644 index 0000000..c931a36 --- /dev/null +++ b/public/organe/PO384819.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384819", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384820.json b/public/organe/PO384820.json new file mode 100644 index 0000000..3c68396 --- /dev/null +++ b/public/organe/PO384820.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384820", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384821.json b/public/organe/PO384821.json new file mode 100644 index 0000000..4534894 --- /dev/null +++ b/public/organe/PO384821.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384821", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO384822.json b/public/organe/PO384822.json new file mode 100644 index 0000000..f85b018 --- /dev/null +++ b/public/organe/PO384822.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384822", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO384823.json b/public/organe/PO384823.json new file mode 100644 index 0000000..91f920b --- /dev/null +++ b/public/organe/PO384823.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384823", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO384824.json b/public/organe/PO384824.json new file mode 100644 index 0000000..6778064 --- /dev/null +++ b/public/organe/PO384824.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384824", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO384825.json b/public/organe/PO384825.json new file mode 100644 index 0000000..45dfabe --- /dev/null +++ b/public/organe/PO384825.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384825", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO384826.json b/public/organe/PO384826.json new file mode 100644 index 0000000..ec49a8e --- /dev/null +++ b/public/organe/PO384826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384826", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO384827.json b/public/organe/PO384827.json new file mode 100644 index 0000000..bf7160f --- /dev/null +++ b/public/organe/PO384827.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384827", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO384828.json b/public/organe/PO384828.json new file mode 100644 index 0000000..0349b33 --- /dev/null +++ b/public/organe/PO384828.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384828", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO384829.json b/public/organe/PO384829.json new file mode 100644 index 0000000..c1eb2c3 --- /dev/null +++ b/public/organe/PO384829.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384829", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO384830.json b/public/organe/PO384830.json new file mode 100644 index 0000000..32b270c --- /dev/null +++ b/public/organe/PO384830.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384830", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO384831.json b/public/organe/PO384831.json new file mode 100644 index 0000000..ddc467d --- /dev/null +++ b/public/organe/PO384831.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384831", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO384832.json b/public/organe/PO384832.json new file mode 100644 index 0000000..f9734af --- /dev/null +++ b/public/organe/PO384832.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384832", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO384833.json b/public/organe/PO384833.json new file mode 100644 index 0000000..acdaf5a --- /dev/null +++ b/public/organe/PO384833.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384833", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO384834.json b/public/organe/PO384834.json new file mode 100644 index 0000000..188e2d6 --- /dev/null +++ b/public/organe/PO384834.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384834", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO384835.json b/public/organe/PO384835.json new file mode 100644 index 0000000..a58f32e --- /dev/null +++ b/public/organe/PO384835.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384835", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO384836.json b/public/organe/PO384836.json new file mode 100644 index 0000000..ddf9828 --- /dev/null +++ b/public/organe/PO384836.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384836", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "5", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO384837.json b/public/organe/PO384837.json new file mode 100644 index 0000000..ee7ac66 --- /dev/null +++ b/public/organe/PO384837.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384837", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO384838.json b/public/organe/PO384838.json new file mode 100644 index 0000000..f1abb66 --- /dev/null +++ b/public/organe/PO384838.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384838", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "O", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO384839.json b/public/organe/PO384839.json new file mode 100644 index 0000000..2ba4ddd --- /dev/null +++ b/public/organe/PO384839.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384839", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO384840.json b/public/organe/PO384840.json new file mode 100644 index 0000000..b452404 --- /dev/null +++ b/public/organe/PO384840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384840", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO384841.json b/public/organe/PO384841.json new file mode 100644 index 0000000..37a5260 --- /dev/null +++ b/public/organe/PO384841.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384841", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO384842.json b/public/organe/PO384842.json new file mode 100644 index 0000000..558dc77 --- /dev/null +++ b/public/organe/PO384842.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384842", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO384843.json b/public/organe/PO384843.json new file mode 100644 index 0000000..0ac666a --- /dev/null +++ b/public/organe/PO384843.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO384843", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2007-06-20", "dateAgrement": null, "dateFin": "2012-06-19"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO394842.json b/public/organe/PO394842.json new file mode 100644 index 0000000..187ce39 --- /dev/null +++ b/public/organe/PO394842.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO394842", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Office fran\u00e7ais de protection des r\u00e9fugi\u00e9s et apatrides", "libelleEdition": "du conseil d'administration de l'Office fran\u00e7ais de protection des r\u00e9fugi\u00e9s et apatrides", "libelleAbrege": "R\u00e9fugi\u00e9s et apatrides", "libelleAbrev": "196", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article L. 722-1 du code de l\u2019entr\u00e9e et du s\u00e9jour des \u00e9trangers et du droit d\u2019asile", "siteInternet": "https://www.ofpra.gouv.fr/fr/l-ofpra/organisation/le-conseil-d-administration", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO394845.json b/public/organe/PO394845.json new file mode 100644 index 0000000..ef272c1 --- /dev/null +++ b/public/organe/PO394845.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO394845", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Office franco-allemand pour la jeunesse", "libelleEdition": "du conseil d'administration de l'Office franco-allemand pour la jeunesse", "libelleAbrege": "Office franco-allemand jeunesse", "libelleAbrev": "226", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article XXX de la loi visant \u00e0 garantir la pr\u00e9sence des parlementaires dans certains organismes ext\u00e9rieurs au Parlement et \u00e0 simplifier les modalit\u00e9s de leur nomination", "siteInternet": "https://www.ofaj.org/institution/organigramme/le-conseil-d-administration.html", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO395066.json b/public/organe/PO395066.json new file mode 100644 index 0000000..85a539b --- /dev/null +++ b/public/organe/PO395066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO395066", "codeType": "API", "libelle": "D\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire de la coop\u00e9ration \u00e9conomique de la mer Noire", "libelleEdition": "de la d\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire de la coop\u00e9ration \u00e9conomique de la mer Noire", "libelleAbrege": "Assembl\u00e9e mer Noire", "libelleAbrev": "AE NOIRE", "viMoDe": {"dateDebut": "1993-02-26", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO395489.json b/public/organe/PO395489.json new file mode 100644 index 0000000..71ed6d6 --- /dev/null +++ b/public/organe/PO395489.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO395489", "codeType": "ORGEXTPARL", "libelle": "Conseil de l'immobilier de l'Etat", "libelleEdition": "du Conseil de l'immobilier de l'Etat", "libelleAbrege": "Immobilier de l'Etat", "libelleAbrev": "236", "viMoDe": {"dateDebut": "2006-10-16", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 4211-1 du code g\u00e9n\u00e9ral de la propri\u00e9t\u00e9 des personnes publiques", "siteInternet": "https://www.economie.gouv.fr/cie/conseil-limmobilier-letat-2", "nombreReunionsAnnuelles": "19"}} \ No newline at end of file diff --git a/public/organe/PO402232.json b/public/organe/PO402232.json new file mode 100644 index 0000000..4dd81fb --- /dev/null +++ b/public/organe/PO402232.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO402232", "codeType": "OFFPAR", "libelle": "D\u00e9l\u00e9gation parlementaire au renseignement", "libelleEdition": "de la d\u00e9l\u00e9gation parlementaire au renseignement", "libelleAbrege": "D\u00e9l\u00e9gation parlementaire au renseignement", "libelleAbrev": "DPR", "viMoDe": {"dateDebut": "2007-10-10", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO405191.json b/public/organe/PO405191.json new file mode 100644 index 0000000..2af8ab2 --- /dev/null +++ b/public/organe/PO405191.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO405191", "codeType": "DELEGSENAT", "libelle": "D\u00e9l\u00e9gation parlementaire au renseignement", "libelleEdition": null, "libelleAbrege": "D\u00e9l\u00e9gation parlementaire au renseignement", "libelleAbrev": "RENSE", "viMoDe": {"dateDebut": "2007-10-10", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO407326.json b/public/organe/PO407326.json new file mode 100644 index 0000000..e6d6090 --- /dev/null +++ b/public/organe/PO407326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO407326", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Institut des hautes \u00e9tudes pour la science et la technologie", "libelleEdition": "du conseil d'administration de l'Institut des hautes \u00e9tudes pour la science et la technologie", "libelleAbrege": "Science et technologie", "libelleAbrev": "239", "viMoDe": {"dateDebut": "2007-04-27", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 30 de la loi n\u00b0 2018-699 du 3 ao\u00fbt 2018", "siteInternet": "https://www.ihest.fr/l-institut/qui-sommes-nous/conseil-d-administration", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO415287.json b/public/organe/PO415287.json new file mode 100644 index 0000000..b916bba --- /dev/null +++ b/public/organe/PO415287.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO415287", "codeType": "COMNL", "libelle": "Commission des affaires europ\u00e9ennes", "libelleEdition": "de la commission des affaires europ\u00e9ennes", "libelleAbrege": "Affaires europ\u00e9ennes", "libelleAbrev": "DUE", "viMoDe": {"dateDebut": "2008-09-17", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "secretariat": {"secretaire01": "M. Guy Chauvin", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO415381.json b/public/organe/PO415381.json new file mode 100644 index 0000000..e74e61a --- /dev/null +++ b/public/organe/PO415381.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO415381", "codeType": "ORGEXTPARL", "libelle": "Commission nationale charg\u00e9e de l'examen du respect des obligations de r\u00e9alisation de logements sociaux", "libelleEdition": "de la Commission nationale charg\u00e9e de l'examen du respect des obligations de r\u00e9alisation de logements sociaux", "libelleAbrege": "R\u00e9alisation de logements sociaux", "libelleAbrev": "243", "viMoDe": {"dateDebut": "2008-06-13", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 302-9-1-1 du code de la construction et de l\u2019habitation", "siteInternet": null, "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO415444.json b/public/organe/PO415444.json new file mode 100644 index 0000000..aa023c6 --- /dev/null +++ b/public/organe/PO415444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO415444", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 national de l'eau", "libelleEdition": "du Comit\u00e9 national de l'eau", "libelleAbrege": "Eau", "libelleAbrev": "245", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article L. 213-1 du code de l\u2019environnement", "siteInternet": null, "nombreReunionsAnnuelles": "4"}} \ No newline at end of file diff --git a/public/organe/PO418452.json b/public/organe/PO418452.json new file mode 100644 index 0000000..4436d59 --- /dev/null +++ b/public/organe/PO418452.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO418452", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur des archives", "libelleEdition": "du Conseil sup\u00e9rieur des archives", "libelleAbrege": "Archives", "libelleAbrev": "246", "viMoDe": {"dateDebut": "2008-07-15", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 211-2-1 du code du patrimoine", "siteInternet": "https://francearchives.fr/fr/", "nombreReunionsAnnuelles": "2"}} \ No newline at end of file diff --git a/public/organe/PO418736.json b/public/organe/PO418736.json new file mode 100644 index 0000000..0433700 --- /dev/null +++ b/public/organe/PO418736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO418736", "codeType": "API", "libelle": "D\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire de la M\u00e9diterran\u00e9e", "libelleEdition": "de la d\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire de la M\u00e9diterran\u00e9e", "libelleAbrege": "Assembl\u00e9e parlementaire de la M\u00e9diterran\u00e9e", "libelleAbrev": "APM", "viMoDe": {"dateDebut": "2009-03-19", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO418755.json b/public/organe/PO418755.json new file mode 100644 index 0000000..7767224 --- /dev/null +++ b/public/organe/PO418755.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO418755", "codeType": "API", "libelle": "Assembl\u00e9e parlementaire de l'Union pour la M\u00e9diterran\u00e9e", "libelleEdition": "de l'Assembl\u00e9e parlementaire de l'Union pour la M\u00e9diterran\u00e9e", "libelleAbrege": "Assembl\u00e9e parlementaire de l'Union pour la M\u00e9diterran\u00e9e", "libelleAbrev": "APEM", "viMoDe": {"dateDebut": "2009-03-23", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO419604.json b/public/organe/PO419604.json new file mode 100644 index 0000000..c35c73b --- /dev/null +++ b/public/organe/PO419604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO419604", "codeType": "COMPER", "libelle": "Commission des affaires culturelles et de l'\u00e9ducation", "libelleEdition": "de la commission des affaires culturelles et de l'\u00e9ducation", "libelleAbrege": "Affaires culturelles et \u00e9ducation", "libelleAbrev": "CION-CEDU", "viMoDe": {"dateDebut": "2009-06-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "Mme Alexandra Feuillade", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO419610.json b/public/organe/PO419610.json new file mode 100644 index 0000000..bc35203 --- /dev/null +++ b/public/organe/PO419610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO419610", "codeType": "COMPER", "libelle": "Commission des affaires \u00e9conomiques", "libelleEdition": "de la commission des affaires \u00e9conomiques", "libelleAbrege": "Affaires \u00e9conomiques", "libelleAbrev": "CION-ECO", "viMoDe": {"dateDebut": "2009-06-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Thierry Anjubault", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO419865.json b/public/organe/PO419865.json new file mode 100644 index 0000000..de0a96d --- /dev/null +++ b/public/organe/PO419865.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO419865", "codeType": "COMPER", "libelle": "Commission du d\u00e9veloppement durable et de l'am\u00e9nagement du territoire", "libelleEdition": "de la commission du d\u00e9veloppement durable et de l'am\u00e9nagement du territoire", "libelleAbrege": "D\u00e9veloppement durable", "libelleAbrev": "CION-DVP", "viMoDe": {"dateDebut": "2009-06-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "Mme Emmanuelle Lavie", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO420120.json b/public/organe/PO420120.json new file mode 100644 index 0000000..c1b68cf --- /dev/null +++ b/public/organe/PO420120.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO420120", "codeType": "COMPER", "libelle": "Commission des affaires sociales", "libelleEdition": "de la commission des affaires sociales", "libelleAbrege": "Affaires sociales", "libelleAbrev": "CION-SOC", "viMoDe": {"dateDebut": "2009-06-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Simon Corley", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO420375.json b/public/organe/PO420375.json new file mode 100644 index 0000000..55f7561 --- /dev/null +++ b/public/organe/PO420375.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO420375", "codeType": "COMNL", "libelle": "Comit\u00e9 d'\u00e9valuation et de contr\u00f4le des politiques publiques", "libelleEdition": "du comit\u00e9 d'\u00e9valuation et de contr\u00f4le des politiques publiques", "libelleAbrege": "Comit\u00e9 d'\u00e9valuation et contr\u00f4le", "libelleAbrev": "CEC", "viMoDe": {"dateDebut": "2009-06-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "13", "secretariat": {"secretaire01": "M. Christophe Maisonneuve", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO420387.json b/public/organe/PO420387.json new file mode 100644 index 0000000..e3b8508 --- /dev/null +++ b/public/organe/PO420387.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO420387", "codeType": "DELEGSENAT", "libelle": "D\u00e9l\u00e9gation s\u00e9natoriale aux collectivit\u00e9s territoriales et \u00e0 la d\u00e9centralisation", "libelleEdition": null, "libelleAbrege": "D\u00e9l\u00e9gation s\u00e9natoriale aux collectivit\u00e9s territoriales et \u00e0 la d\u00e9centralisation", "libelleAbrev": "COLTE", "viMoDe": {"dateDebut": "2009-04-07", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO420388.json b/public/organe/PO420388.json new file mode 100644 index 0000000..6715998 --- /dev/null +++ b/public/organe/PO420388.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO420388", "codeType": "DELEGSENAT", "libelle": "D\u00e9l\u00e9gation s\u00e9natoriale \u00e0 la prospective", "libelleEdition": "de la d\u00e9l\u00e9gation s\u00e9natoriale \u00e0 la prospective", "libelleAbrege": "D\u00e9l\u00e9gation s\u00e9natoriale \u00e0 la prospective", "libelleAbrev": "PROSD", "viMoDe": {"dateDebut": "2009-04-07", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO420854.json b/public/organe/PO420854.json new file mode 100644 index 0000000..3ae3da5 --- /dev/null +++ b/public/organe/PO420854.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO420854", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Etablissement national des produits de l'agriculture et de la mer", "libelleEdition": "du conseil d'administration de l'Etablissement national des produits de l'agriculture et de la mer", "libelleAbrege": "FranceAgriMer", "libelleAbrev": "251", "viMoDe": {"dateDebut": "2009-03-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 621-5 du code rural et de la p\u00eache maritime", "siteInternet": "http://www.franceagrimer.fr/Etablissement/Organisation/Conseil-d-administration", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO422375.json b/public/organe/PO422375.json new file mode 100644 index 0000000..b8b5d49 --- /dev/null +++ b/public/organe/PO422375.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO422375", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 des usagers du r\u00e9seau routier national", "libelleEdition": "du Comit\u00e9 des usagers du r\u00e9seau routier national", "libelleAbrege": "R\u00e9seau routier national", "libelleAbrev": "255", "viMoDe": {"dateDebut": "2009-09-08", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 121-4 du code de la voirie routi\u00e8re", "siteInternet": null, "nombreReunionsAnnuelles": "4"}} \ No newline at end of file diff --git a/public/organe/PO422826.json b/public/organe/PO422826.json new file mode 100644 index 0000000..8f7cdd3 --- /dev/null +++ b/public/organe/PO422826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO422826", "codeType": "ORGEXTPARL", "libelle": "Agence nationale de l'habitat", "libelleEdition": "de l'Agence nationale de l'habitat", "libelleAbrege": "Agence nationale de l'habitat", "libelleAbrev": "258", "viMoDe": {"dateDebut": "2009-12-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 321-1 du code de la construction et de l\u2019habitation", "siteInternet": "http://www.anah.fr/qui-sommes-nous/organisation/le-conseil-dadministration/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO422874.json b/public/organe/PO422874.json new file mode 100644 index 0000000..42414b6 --- /dev/null +++ b/public/organe/PO422874.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO422874", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de surveillance des investissements d'avenir", "libelleEdition": "du Comit\u00e9 de surveillance des investissements d'avenir", "libelleAbrege": "Investissements d'avenir", "libelleAbrev": "259", "viMoDe": {"dateDebut": "2010-01-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 8 de la loi n\u00b0 2010-237 du 9 mars 2010", "siteInternet": "https://www.gouvernement.fr/comite-de-surveillance-4012", "nombreReunionsAnnuelles": "3"}} \ No newline at end of file diff --git a/public/organe/PO423980.json b/public/organe/PO423980.json new file mode 100644 index 0000000..9e8575a --- /dev/null +++ b/public/organe/PO423980.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO423980", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur de l'aviation civile", "libelleEdition": "du Conseil sup\u00e9rieur de l'aviation civile", "libelleAbrege": "Aviation civile", "libelleAbrev": "261", "viMoDe": {"dateDebut": "2010-03-10", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 6441-1 du code des transports", "siteInternet": null, "nombreReunionsAnnuelles": "1"}} \ No newline at end of file diff --git a/public/organe/PO424150.json b/public/organe/PO424150.json new file mode 100644 index 0000000..7342f9e --- /dev/null +++ b/public/organe/PO424150.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO424150", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 strat\u00e9gique de l'Agence du service civique", "libelleEdition": "du comit\u00e9 strat\u00e9gique de l'Agence du service civique", "libelleAbrege": "Service civique", "libelleAbrev": "264", "viMoDe": {"dateDebut": "2010-05-13", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 120-2 du code du service national", "siteInternet": "https://www.service-civique.gouv.fr/page/organisation-de-l-agence-du-service-civique", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO424481.json b/public/organe/PO424481.json new file mode 100644 index 0000000..0ca523d --- /dev/null +++ b/public/organe/PO424481.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO424481", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'industrie", "libelleEdition": "du Conseil national de l'industrie", "libelleAbrege": "Conseil national de l'industrie", "libelleAbrev": "265", "viMoDe": {"dateDebut": "2010-06-03", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 32 de la loi n\u00b0 2018-699 du 3 ao\u00fbt 2018", "siteInternet": "https://www.entreprises.gouv.fr/conseil-national-industrie", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO426509.json b/public/organe/PO426509.json new file mode 100644 index 0000000..8fe3081 --- /dev/null +++ b/public/organe/PO426509.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO426509", "codeType": "ORGEXTPARL", "libelle": "Commission consultative de suivi des cons\u00e9quences des essais nucl\u00e9aires", "libelleEdition": "de la Commission consultative de suivi des cons\u00e9quences des essais nucl\u00e9aires", "libelleAbrege": "Essais nucl\u00e9aires", "libelleAbrev": "272", "viMoDe": {"dateDebut": "2010-01-05", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 7 de la loi n\u00b0 2010-2 du 5 janvier 2010", "siteInternet": "https://www.gouvernement.fr/civen-faq-3022", "nombreReunionsAnnuelles": "1"}} \ No newline at end of file diff --git a/public/organe/PO427570.json b/public/organe/PO427570.json new file mode 100644 index 0000000..f2b7416 --- /dev/null +++ b/public/organe/PO427570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO427570", "codeType": "ORGEXTPARL", "libelle": "Conseil d'orientation strat\u00e9gique de l'Institut fran\u00e7ais", "libelleEdition": "du conseil d'orientation strat\u00e9gique de l'Institut fran\u00e7ais", "libelleAbrege": "Institut fran\u00e7ais (COS)", "libelleAbrev": "274", "viMoDe": {"dateDebut": "2010-12-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article\u00a010 de la loi n\u00b0 2010-873 du 27 juillet 2010", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO429449.json b/public/organe/PO429449.json new file mode 100644 index 0000000..87b8d41 --- /dev/null +++ b/public/organe/PO429449.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO429449", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO429451.json b/public/organe/PO429451.json new file mode 100644 index 0000000..653bc13 --- /dev/null +++ b/public/organe/PO429451.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO429451", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO429453.json b/public/organe/PO429453.json new file mode 100644 index 0000000..94ccaed --- /dev/null +++ b/public/organe/PO429453.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO429453", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO429455.json b/public/organe/PO429455.json new file mode 100644 index 0000000..7feb2ba --- /dev/null +++ b/public/organe/PO429455.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO429455", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO429559.json b/public/organe/PO429559.json new file mode 100644 index 0000000..1830298 --- /dev/null +++ b/public/organe/PO429559.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO429559", "codeType": "ORGEXTPARL", "libelle": "Conseil national de la mer et des littoraux", "libelleEdition": "du Conseil national de la mer et des littoraux", "libelleAbrege": "Mer et littoraux", "libelleAbrev": "282", "viMoDe": {"dateDebut": "2011-06-09", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article\u00a043 de la loi\u00a0n\u00b0\u00a086-2 du 3\u00a0janvier\u00a01986", "siteInternet": null, "nombreReunionsAnnuelles": "7"}} \ No newline at end of file diff --git a/public/organe/PO429567.json b/public/organe/PO429567.json new file mode 100644 index 0000000..d8ea44d --- /dev/null +++ b/public/organe/PO429567.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO429567", "codeType": "ORGEXTPARL", "libelle": "Haut Conseil \u00e0 la vie associative", "libelleEdition": "du Haut Conseil \u00e0 la vie associative", "libelleAbrege": "Vie associative", "libelleAbrev": "283", "viMoDe": {"dateDebut": "2011-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article\u00a063 de la loi\u00a0n\u00b0\u00a02014-856 du 31\u00a0juillet\u00a02014", "siteInternet": "https://www.associations.gouv.fr/la-composition-du-hcva.html", "nombreReunionsAnnuelles": "35"}} \ No newline at end of file diff --git a/public/organe/PO430982.json b/public/organe/PO430982.json new file mode 100644 index 0000000..88a51e6 --- /dev/null +++ b/public/organe/PO430982.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO430982", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 consultatif aupr\u00e8s du conseil d'administration de l'Etablissement public de Paris-Saclay", "libelleEdition": "du Comit\u00e9 consultatif aupr\u00e8s du conseil d'administration de l'Etablissement public de Paris-Saclay", "libelleAbrege": "Comit\u00e9 consultatif Paris-Saclay", "libelleAbrev": "285", "viMoDe": {"dateDebut": "2010-08-03", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 321-39 du code de l'urbanisme", "siteInternet": "https://www.epaps.fr/gouvernance/comite-consultatif/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO435816.json b/public/organe/PO435816.json new file mode 100644 index 0000000..dc5039d --- /dev/null +++ b/public/organe/PO435816.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO435816", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 strat\u00e9gique aupr\u00e8s du conseil de surveillance de la soci\u00e9t\u00e9 du Grand Paris", "libelleEdition": "du Comit\u00e9 strat\u00e9gique aupr\u00e8s du conseil de surveillance de la soci\u00e9t\u00e9 du Grand Paris", "libelleAbrege": "Comit\u00e9 strat\u00e9gique Grand Paris", "libelleAbrev": "288", "viMoDe": {"dateDebut": "2010-07-07", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 8 de la loi n\u00b0 2010-597 du 3 juin 2010", "siteInternet": "https://www.societedugrandparis.fr/sgp/identite-et-organisation", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO436945.json b/public/organe/PO436945.json new file mode 100644 index 0000000..f1431f3 --- /dev/null +++ b/public/organe/PO436945.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO436945", "codeType": "DELEGSENAT", "libelle": "D\u00e9l\u00e9gation s\u00e9natoriale \u00e0 l'Outre-mer", "libelleEdition": null, "libelleAbrege": "D\u00e9l\u00e9gation s\u00e9natoriale \u00e0 l'Outre-mer", "libelleAbrev": "DSOMD", "viMoDe": {"dateDebut": "2011-11-30", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO50314.json b/public/organe/PO50314.json new file mode 100644 index 0000000..eb0facc --- /dev/null +++ b/public/organe/PO50314.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50314", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50315.json b/public/organe/PO50315.json new file mode 100644 index 0000000..25b18ac --- /dev/null +++ b/public/organe/PO50315.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50315", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50316.json b/public/organe/PO50316.json new file mode 100644 index 0000000..d1bf56b --- /dev/null +++ b/public/organe/PO50316.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50316", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50317.json b/public/organe/PO50317.json new file mode 100644 index 0000000..fbb46fb --- /dev/null +++ b/public/organe/PO50317.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50317", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50318.json b/public/organe/PO50318.json new file mode 100644 index 0000000..a384639 --- /dev/null +++ b/public/organe/PO50318.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50318", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50319.json b/public/organe/PO50319.json new file mode 100644 index 0000000..dcf7209 --- /dev/null +++ b/public/organe/PO50319.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50319", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50320.json b/public/organe/PO50320.json new file mode 100644 index 0000000..2716373 --- /dev/null +++ b/public/organe/PO50320.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50320", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50321.json b/public/organe/PO50321.json new file mode 100644 index 0000000..bd6273d --- /dev/null +++ b/public/organe/PO50321.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50321", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50322.json b/public/organe/PO50322.json new file mode 100644 index 0000000..8981797 --- /dev/null +++ b/public/organe/PO50322.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50322", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50323.json b/public/organe/PO50323.json new file mode 100644 index 0000000..8b36a45 --- /dev/null +++ b/public/organe/PO50323.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50323", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50324.json b/public/organe/PO50324.json new file mode 100644 index 0000000..b64a7ba --- /dev/null +++ b/public/organe/PO50324.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50324", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50325.json b/public/organe/PO50325.json new file mode 100644 index 0000000..0aa5411 --- /dev/null +++ b/public/organe/PO50325.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50325", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50326.json b/public/organe/PO50326.json new file mode 100644 index 0000000..1dccf0e --- /dev/null +++ b/public/organe/PO50326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50326", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50327.json b/public/organe/PO50327.json new file mode 100644 index 0000000..2a4aefa --- /dev/null +++ b/public/organe/PO50327.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50327", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50328.json b/public/organe/PO50328.json new file mode 100644 index 0000000..0c8abd1 --- /dev/null +++ b/public/organe/PO50328.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50328", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50329.json b/public/organe/PO50329.json new file mode 100644 index 0000000..51661ba --- /dev/null +++ b/public/organe/PO50329.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50329", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50330.json b/public/organe/PO50330.json new file mode 100644 index 0000000..83279ce --- /dev/null +++ b/public/organe/PO50330.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50330", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50331.json b/public/organe/PO50331.json new file mode 100644 index 0000000..0c8fc2d --- /dev/null +++ b/public/organe/PO50331.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50331", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50332.json b/public/organe/PO50332.json new file mode 100644 index 0000000..79ce690 --- /dev/null +++ b/public/organe/PO50332.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50332", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO50333.json b/public/organe/PO50333.json new file mode 100644 index 0000000..bad9b95 --- /dev/null +++ b/public/organe/PO50333.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50333", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50334.json b/public/organe/PO50334.json new file mode 100644 index 0000000..2b07e3b --- /dev/null +++ b/public/organe/PO50334.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50334", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50335.json b/public/organe/PO50335.json new file mode 100644 index 0000000..837abe5 --- /dev/null +++ b/public/organe/PO50335.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50335", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50336.json b/public/organe/PO50336.json new file mode 100644 index 0000000..22b3258 --- /dev/null +++ b/public/organe/PO50336.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50336", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50337.json b/public/organe/PO50337.json new file mode 100644 index 0000000..ef07357 --- /dev/null +++ b/public/organe/PO50337.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50337", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50338.json b/public/organe/PO50338.json new file mode 100644 index 0000000..6569ad8 --- /dev/null +++ b/public/organe/PO50338.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50338", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50339.json b/public/organe/PO50339.json new file mode 100644 index 0000000..9a8cc36 --- /dev/null +++ b/public/organe/PO50339.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50339", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50340.json b/public/organe/PO50340.json new file mode 100644 index 0000000..349b202 --- /dev/null +++ b/public/organe/PO50340.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50340", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50341.json b/public/organe/PO50341.json new file mode 100644 index 0000000..35cbbbd --- /dev/null +++ b/public/organe/PO50341.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50341", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50342.json b/public/organe/PO50342.json new file mode 100644 index 0000000..4380021 --- /dev/null +++ b/public/organe/PO50342.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50342", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50343.json b/public/organe/PO50343.json new file mode 100644 index 0000000..b9261b1 --- /dev/null +++ b/public/organe/PO50343.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50343", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50344.json b/public/organe/PO50344.json new file mode 100644 index 0000000..39afe71 --- /dev/null +++ b/public/organe/PO50344.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50344", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50345.json b/public/organe/PO50345.json new file mode 100644 index 0000000..f668a6a --- /dev/null +++ b/public/organe/PO50345.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50345", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50346.json b/public/organe/PO50346.json new file mode 100644 index 0000000..8cbe55f --- /dev/null +++ b/public/organe/PO50346.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50346", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50347.json b/public/organe/PO50347.json new file mode 100644 index 0000000..c0e4524 --- /dev/null +++ b/public/organe/PO50347.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50347", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50348.json b/public/organe/PO50348.json new file mode 100644 index 0000000..0d2b15f --- /dev/null +++ b/public/organe/PO50348.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50348", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50349.json b/public/organe/PO50349.json new file mode 100644 index 0000000..edb0a16 --- /dev/null +++ b/public/organe/PO50349.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50349", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50350.json b/public/organe/PO50350.json new file mode 100644 index 0000000..e31084e --- /dev/null +++ b/public/organe/PO50350.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50350", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50351.json b/public/organe/PO50351.json new file mode 100644 index 0000000..460a0ed --- /dev/null +++ b/public/organe/PO50351.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50351", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50352.json b/public/organe/PO50352.json new file mode 100644 index 0000000..556eda7 --- /dev/null +++ b/public/organe/PO50352.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50352", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50353.json b/public/organe/PO50353.json new file mode 100644 index 0000000..a0fec92 --- /dev/null +++ b/public/organe/PO50353.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50353", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50354.json b/public/organe/PO50354.json new file mode 100644 index 0000000..6c6ba68 --- /dev/null +++ b/public/organe/PO50354.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50354", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50355.json b/public/organe/PO50355.json new file mode 100644 index 0000000..607ee72 --- /dev/null +++ b/public/organe/PO50355.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50355", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50356.json b/public/organe/PO50356.json new file mode 100644 index 0000000..99eb5fa --- /dev/null +++ b/public/organe/PO50356.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50356", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50357.json b/public/organe/PO50357.json new file mode 100644 index 0000000..b2ede8e --- /dev/null +++ b/public/organe/PO50357.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50357", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50358.json b/public/organe/PO50358.json new file mode 100644 index 0000000..253d244 --- /dev/null +++ b/public/organe/PO50358.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50358", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50359.json b/public/organe/PO50359.json new file mode 100644 index 0000000..2111db9 --- /dev/null +++ b/public/organe/PO50359.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50359", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50360.json b/public/organe/PO50360.json new file mode 100644 index 0000000..f16a38a --- /dev/null +++ b/public/organe/PO50360.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50360", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50361.json b/public/organe/PO50361.json new file mode 100644 index 0000000..8183e34 --- /dev/null +++ b/public/organe/PO50361.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50361", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50362.json b/public/organe/PO50362.json new file mode 100644 index 0000000..6fad970 --- /dev/null +++ b/public/organe/PO50362.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50362", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO50363.json b/public/organe/PO50363.json new file mode 100644 index 0000000..463e967 --- /dev/null +++ b/public/organe/PO50363.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50363", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50364.json b/public/organe/PO50364.json new file mode 100644 index 0000000..8d4e069 --- /dev/null +++ b/public/organe/PO50364.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50364", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50365.json b/public/organe/PO50365.json new file mode 100644 index 0000000..3c2a83d --- /dev/null +++ b/public/organe/PO50365.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50365", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50366.json b/public/organe/PO50366.json new file mode 100644 index 0000000..e013b1a --- /dev/null +++ b/public/organe/PO50366.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50366", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50367.json b/public/organe/PO50367.json new file mode 100644 index 0000000..8e84a44 --- /dev/null +++ b/public/organe/PO50367.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50367", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50368.json b/public/organe/PO50368.json new file mode 100644 index 0000000..6f41f9f --- /dev/null +++ b/public/organe/PO50368.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50368", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50369.json b/public/organe/PO50369.json new file mode 100644 index 0000000..adbdb80 --- /dev/null +++ b/public/organe/PO50369.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50369", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50370.json b/public/organe/PO50370.json new file mode 100644 index 0000000..c2360ee --- /dev/null +++ b/public/organe/PO50370.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50370", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50371.json b/public/organe/PO50371.json new file mode 100644 index 0000000..dbb48fc --- /dev/null +++ b/public/organe/PO50371.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50371", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50372.json b/public/organe/PO50372.json new file mode 100644 index 0000000..5802ee6 --- /dev/null +++ b/public/organe/PO50372.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50372", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50373.json b/public/organe/PO50373.json new file mode 100644 index 0000000..e6b3c1f --- /dev/null +++ b/public/organe/PO50373.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50373", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50374.json b/public/organe/PO50374.json new file mode 100644 index 0000000..e8f5bf9 --- /dev/null +++ b/public/organe/PO50374.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50374", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50375.json b/public/organe/PO50375.json new file mode 100644 index 0000000..e3bbe05 --- /dev/null +++ b/public/organe/PO50375.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50375", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50376.json b/public/organe/PO50376.json new file mode 100644 index 0000000..da125f5 --- /dev/null +++ b/public/organe/PO50376.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50376", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50377.json b/public/organe/PO50377.json new file mode 100644 index 0000000..c0af68c --- /dev/null +++ b/public/organe/PO50377.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50377", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50378.json b/public/organe/PO50378.json new file mode 100644 index 0000000..10b22f9 --- /dev/null +++ b/public/organe/PO50378.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50378", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50379.json b/public/organe/PO50379.json new file mode 100644 index 0000000..76535a5 --- /dev/null +++ b/public/organe/PO50379.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50379", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50380.json b/public/organe/PO50380.json new file mode 100644 index 0000000..38eb768 --- /dev/null +++ b/public/organe/PO50380.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50380", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50381.json b/public/organe/PO50381.json new file mode 100644 index 0000000..5f952df --- /dev/null +++ b/public/organe/PO50381.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50381", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50382.json b/public/organe/PO50382.json new file mode 100644 index 0000000..fb18d37 --- /dev/null +++ b/public/organe/PO50382.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50382", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50383.json b/public/organe/PO50383.json new file mode 100644 index 0000000..a71f3c0 --- /dev/null +++ b/public/organe/PO50383.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50383", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50384.json b/public/organe/PO50384.json new file mode 100644 index 0000000..bb9ab88 --- /dev/null +++ b/public/organe/PO50384.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50384", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO50385.json b/public/organe/PO50385.json new file mode 100644 index 0000000..312f008 --- /dev/null +++ b/public/organe/PO50385.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50385", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50386.json b/public/organe/PO50386.json new file mode 100644 index 0000000..a0dc880 --- /dev/null +++ b/public/organe/PO50386.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50386", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50387.json b/public/organe/PO50387.json new file mode 100644 index 0000000..b96595d --- /dev/null +++ b/public/organe/PO50387.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50387", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50388.json b/public/organe/PO50388.json new file mode 100644 index 0000000..ff909e7 --- /dev/null +++ b/public/organe/PO50388.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50388", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50389.json b/public/organe/PO50389.json new file mode 100644 index 0000000..2baab94 --- /dev/null +++ b/public/organe/PO50389.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50389", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50390.json b/public/organe/PO50390.json new file mode 100644 index 0000000..8612be4 --- /dev/null +++ b/public/organe/PO50390.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50390", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50391.json b/public/organe/PO50391.json new file mode 100644 index 0000000..040ffa4 --- /dev/null +++ b/public/organe/PO50391.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50391", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50392.json b/public/organe/PO50392.json new file mode 100644 index 0000000..6cdbd4c --- /dev/null +++ b/public/organe/PO50392.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50392", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50393.json b/public/organe/PO50393.json new file mode 100644 index 0000000..a17fa91 --- /dev/null +++ b/public/organe/PO50393.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50393", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50394.json b/public/organe/PO50394.json new file mode 100644 index 0000000..d4cf65b --- /dev/null +++ b/public/organe/PO50394.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50394", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50395.json b/public/organe/PO50395.json new file mode 100644 index 0000000..8b4df52 --- /dev/null +++ b/public/organe/PO50395.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50395", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO50396.json b/public/organe/PO50396.json new file mode 100644 index 0000000..200a695 --- /dev/null +++ b/public/organe/PO50396.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50396", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50397.json b/public/organe/PO50397.json new file mode 100644 index 0000000..4953785 --- /dev/null +++ b/public/organe/PO50397.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50397", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50398.json b/public/organe/PO50398.json new file mode 100644 index 0000000..b2577c8 --- /dev/null +++ b/public/organe/PO50398.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50398", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50399.json b/public/organe/PO50399.json new file mode 100644 index 0000000..f155163 --- /dev/null +++ b/public/organe/PO50399.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50399", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50400.json b/public/organe/PO50400.json new file mode 100644 index 0000000..e84bc4a --- /dev/null +++ b/public/organe/PO50400.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50400", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50401.json b/public/organe/PO50401.json new file mode 100644 index 0000000..90b04cd --- /dev/null +++ b/public/organe/PO50401.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50401", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50402.json b/public/organe/PO50402.json new file mode 100644 index 0000000..33471b1 --- /dev/null +++ b/public/organe/PO50402.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50402", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50403.json b/public/organe/PO50403.json new file mode 100644 index 0000000..25034d9 --- /dev/null +++ b/public/organe/PO50403.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50403", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50404.json b/public/organe/PO50404.json new file mode 100644 index 0000000..a8b389a --- /dev/null +++ b/public/organe/PO50404.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50404", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50405.json b/public/organe/PO50405.json new file mode 100644 index 0000000..a11feb4 --- /dev/null +++ b/public/organe/PO50405.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50405", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50406.json b/public/organe/PO50406.json new file mode 100644 index 0000000..ce3d09f --- /dev/null +++ b/public/organe/PO50406.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50406", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50407.json b/public/organe/PO50407.json new file mode 100644 index 0000000..128be21 --- /dev/null +++ b/public/organe/PO50407.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50407", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO50408.json b/public/organe/PO50408.json new file mode 100644 index 0000000..9fde926 --- /dev/null +++ b/public/organe/PO50408.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50408", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50409.json b/public/organe/PO50409.json new file mode 100644 index 0000000..dc0bb4f --- /dev/null +++ b/public/organe/PO50409.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50409", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50410.json b/public/organe/PO50410.json new file mode 100644 index 0000000..1fceb4f --- /dev/null +++ b/public/organe/PO50410.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50410", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50411.json b/public/organe/PO50411.json new file mode 100644 index 0000000..797e76b --- /dev/null +++ b/public/organe/PO50411.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50411", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50412.json b/public/organe/PO50412.json new file mode 100644 index 0000000..3893bc9 --- /dev/null +++ b/public/organe/PO50412.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50412", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50413.json b/public/organe/PO50413.json new file mode 100644 index 0000000..4e2bc20 --- /dev/null +++ b/public/organe/PO50413.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50413", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50414.json b/public/organe/PO50414.json new file mode 100644 index 0000000..d814f6c --- /dev/null +++ b/public/organe/PO50414.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50414", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50415.json b/public/organe/PO50415.json new file mode 100644 index 0000000..8215860 --- /dev/null +++ b/public/organe/PO50415.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50415", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50416.json b/public/organe/PO50416.json new file mode 100644 index 0000000..4a9247a --- /dev/null +++ b/public/organe/PO50416.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50416", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50417.json b/public/organe/PO50417.json new file mode 100644 index 0000000..b38524e --- /dev/null +++ b/public/organe/PO50417.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50417", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50418.json b/public/organe/PO50418.json new file mode 100644 index 0000000..62d1cc9 --- /dev/null +++ b/public/organe/PO50418.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50418", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50419.json b/public/organe/PO50419.json new file mode 100644 index 0000000..53b2b95 --- /dev/null +++ b/public/organe/PO50419.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50419", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50420.json b/public/organe/PO50420.json new file mode 100644 index 0000000..c680e12 --- /dev/null +++ b/public/organe/PO50420.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50420", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50421.json b/public/organe/PO50421.json new file mode 100644 index 0000000..225f032 --- /dev/null +++ b/public/organe/PO50421.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50421", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50422.json b/public/organe/PO50422.json new file mode 100644 index 0000000..ed44dd0 --- /dev/null +++ b/public/organe/PO50422.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50422", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50423.json b/public/organe/PO50423.json new file mode 100644 index 0000000..083245d --- /dev/null +++ b/public/organe/PO50423.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50423", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50424.json b/public/organe/PO50424.json new file mode 100644 index 0000000..cdbd17a --- /dev/null +++ b/public/organe/PO50424.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50424", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50425.json b/public/organe/PO50425.json new file mode 100644 index 0000000..cdb649a --- /dev/null +++ b/public/organe/PO50425.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50425", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50426.json b/public/organe/PO50426.json new file mode 100644 index 0000000..b7afc4b --- /dev/null +++ b/public/organe/PO50426.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50426", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50427.json b/public/organe/PO50427.json new file mode 100644 index 0000000..7a4af1c --- /dev/null +++ b/public/organe/PO50427.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50427", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50428.json b/public/organe/PO50428.json new file mode 100644 index 0000000..42f0a03 --- /dev/null +++ b/public/organe/PO50428.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50428", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50429.json b/public/organe/PO50429.json new file mode 100644 index 0000000..01fd854 --- /dev/null +++ b/public/organe/PO50429.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50429", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50430.json b/public/organe/PO50430.json new file mode 100644 index 0000000..4463803 --- /dev/null +++ b/public/organe/PO50430.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50430", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50431.json b/public/organe/PO50431.json new file mode 100644 index 0000000..f169398 --- /dev/null +++ b/public/organe/PO50431.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50431", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50432.json b/public/organe/PO50432.json new file mode 100644 index 0000000..7c8b38f --- /dev/null +++ b/public/organe/PO50432.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50432", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50433.json b/public/organe/PO50433.json new file mode 100644 index 0000000..30b3f4a --- /dev/null +++ b/public/organe/PO50433.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50433", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50434.json b/public/organe/PO50434.json new file mode 100644 index 0000000..591ff35 --- /dev/null +++ b/public/organe/PO50434.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50434", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50435.json b/public/organe/PO50435.json new file mode 100644 index 0000000..77736c2 --- /dev/null +++ b/public/organe/PO50435.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50435", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50436.json b/public/organe/PO50436.json new file mode 100644 index 0000000..9fb3d9d --- /dev/null +++ b/public/organe/PO50436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50436", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50437.json b/public/organe/PO50437.json new file mode 100644 index 0000000..2b439e5 --- /dev/null +++ b/public/organe/PO50437.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50437", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50438.json b/public/organe/PO50438.json new file mode 100644 index 0000000..e653a65 --- /dev/null +++ b/public/organe/PO50438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50438", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50439.json b/public/organe/PO50439.json new file mode 100644 index 0000000..e30c9d7 --- /dev/null +++ b/public/organe/PO50439.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50439", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50440.json b/public/organe/PO50440.json new file mode 100644 index 0000000..70f31fe --- /dev/null +++ b/public/organe/PO50440.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50440", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50441.json b/public/organe/PO50441.json new file mode 100644 index 0000000..1026eb3 --- /dev/null +++ b/public/organe/PO50441.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50441", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50442.json b/public/organe/PO50442.json new file mode 100644 index 0000000..59e19a4 --- /dev/null +++ b/public/organe/PO50442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50442", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50443.json b/public/organe/PO50443.json new file mode 100644 index 0000000..1486477 --- /dev/null +++ b/public/organe/PO50443.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50443", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50444.json b/public/organe/PO50444.json new file mode 100644 index 0000000..fc8dad7 --- /dev/null +++ b/public/organe/PO50444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50444", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50445.json b/public/organe/PO50445.json new file mode 100644 index 0000000..28ca1e8 --- /dev/null +++ b/public/organe/PO50445.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50445", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50446.json b/public/organe/PO50446.json new file mode 100644 index 0000000..abd0efe --- /dev/null +++ b/public/organe/PO50446.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50446", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50447.json b/public/organe/PO50447.json new file mode 100644 index 0000000..7e7f492 --- /dev/null +++ b/public/organe/PO50447.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50447", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50448.json b/public/organe/PO50448.json new file mode 100644 index 0000000..816f31f --- /dev/null +++ b/public/organe/PO50448.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50448", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50449.json b/public/organe/PO50449.json new file mode 100644 index 0000000..10d4124 --- /dev/null +++ b/public/organe/PO50449.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50449", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50450.json b/public/organe/PO50450.json new file mode 100644 index 0000000..c204531 --- /dev/null +++ b/public/organe/PO50450.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50450", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50451.json b/public/organe/PO50451.json new file mode 100644 index 0000000..67d9b68 --- /dev/null +++ b/public/organe/PO50451.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50451", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50452.json b/public/organe/PO50452.json new file mode 100644 index 0000000..d1c93fc --- /dev/null +++ b/public/organe/PO50452.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50452", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50453.json b/public/organe/PO50453.json new file mode 100644 index 0000000..d433e2e --- /dev/null +++ b/public/organe/PO50453.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50453", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO50454.json b/public/organe/PO50454.json new file mode 100644 index 0000000..94cf771 --- /dev/null +++ b/public/organe/PO50454.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50454", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50455.json b/public/organe/PO50455.json new file mode 100644 index 0000000..9f07e3c --- /dev/null +++ b/public/organe/PO50455.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50455", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50456.json b/public/organe/PO50456.json new file mode 100644 index 0000000..9e1d856 --- /dev/null +++ b/public/organe/PO50456.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50456", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50457.json b/public/organe/PO50457.json new file mode 100644 index 0000000..1247725 --- /dev/null +++ b/public/organe/PO50457.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50457", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50458.json b/public/organe/PO50458.json new file mode 100644 index 0000000..cee119d --- /dev/null +++ b/public/organe/PO50458.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50458", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50459.json b/public/organe/PO50459.json new file mode 100644 index 0000000..ce6c470 --- /dev/null +++ b/public/organe/PO50459.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50459", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50460.json b/public/organe/PO50460.json new file mode 100644 index 0000000..6886b73 --- /dev/null +++ b/public/organe/PO50460.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50460", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50461.json b/public/organe/PO50461.json new file mode 100644 index 0000000..7bc7f2f --- /dev/null +++ b/public/organe/PO50461.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50461", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50462.json b/public/organe/PO50462.json new file mode 100644 index 0000000..34da0f2 --- /dev/null +++ b/public/organe/PO50462.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50462", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50463.json b/public/organe/PO50463.json new file mode 100644 index 0000000..fe1e020 --- /dev/null +++ b/public/organe/PO50463.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50463", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50464.json b/public/organe/PO50464.json new file mode 100644 index 0000000..38826eb --- /dev/null +++ b/public/organe/PO50464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50464", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50465.json b/public/organe/PO50465.json new file mode 100644 index 0000000..e70847f --- /dev/null +++ b/public/organe/PO50465.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50465", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50466.json b/public/organe/PO50466.json new file mode 100644 index 0000000..61bf5eb --- /dev/null +++ b/public/organe/PO50466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50466", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50467.json b/public/organe/PO50467.json new file mode 100644 index 0000000..fb8982e --- /dev/null +++ b/public/organe/PO50467.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50467", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO50468.json b/public/organe/PO50468.json new file mode 100644 index 0000000..96f9049 --- /dev/null +++ b/public/organe/PO50468.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50468", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50469.json b/public/organe/PO50469.json new file mode 100644 index 0000000..6bf83f5 --- /dev/null +++ b/public/organe/PO50469.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50469", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50470.json b/public/organe/PO50470.json new file mode 100644 index 0000000..ed567b5 --- /dev/null +++ b/public/organe/PO50470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50470", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50471.json b/public/organe/PO50471.json new file mode 100644 index 0000000..de9c70f --- /dev/null +++ b/public/organe/PO50471.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50471", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50472.json b/public/organe/PO50472.json new file mode 100644 index 0000000..e126697 --- /dev/null +++ b/public/organe/PO50472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50472", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50473.json b/public/organe/PO50473.json new file mode 100644 index 0000000..24383bb --- /dev/null +++ b/public/organe/PO50473.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50473", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50474.json b/public/organe/PO50474.json new file mode 100644 index 0000000..b5ca7bd --- /dev/null +++ b/public/organe/PO50474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50474", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50475.json b/public/organe/PO50475.json new file mode 100644 index 0000000..af9d521 --- /dev/null +++ b/public/organe/PO50475.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50475", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50476.json b/public/organe/PO50476.json new file mode 100644 index 0000000..82f2909 --- /dev/null +++ b/public/organe/PO50476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50476", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50477.json b/public/organe/PO50477.json new file mode 100644 index 0000000..c5b46ed --- /dev/null +++ b/public/organe/PO50477.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50477", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50478.json b/public/organe/PO50478.json new file mode 100644 index 0000000..aeab500 --- /dev/null +++ b/public/organe/PO50478.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50478", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50479.json b/public/organe/PO50479.json new file mode 100644 index 0000000..f3b00e9 --- /dev/null +++ b/public/organe/PO50479.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50479", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50480.json b/public/organe/PO50480.json new file mode 100644 index 0000000..4103581 --- /dev/null +++ b/public/organe/PO50480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50480", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50481.json b/public/organe/PO50481.json new file mode 100644 index 0000000..bf93137 --- /dev/null +++ b/public/organe/PO50481.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50481", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50482.json b/public/organe/PO50482.json new file mode 100644 index 0000000..49734b4 --- /dev/null +++ b/public/organe/PO50482.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50482", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50483.json b/public/organe/PO50483.json new file mode 100644 index 0000000..7c539a4 --- /dev/null +++ b/public/organe/PO50483.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50483", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO50484.json b/public/organe/PO50484.json new file mode 100644 index 0000000..f696613 --- /dev/null +++ b/public/organe/PO50484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50484", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO50485.json b/public/organe/PO50485.json new file mode 100644 index 0000000..2861138 --- /dev/null +++ b/public/organe/PO50485.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50485", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO50486.json b/public/organe/PO50486.json new file mode 100644 index 0000000..cefbad0 --- /dev/null +++ b/public/organe/PO50486.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50486", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO50487.json b/public/organe/PO50487.json new file mode 100644 index 0000000..5acdd9c --- /dev/null +++ b/public/organe/PO50487.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50487", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO50488.json b/public/organe/PO50488.json new file mode 100644 index 0000000..c0a011b --- /dev/null +++ b/public/organe/PO50488.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50488", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO50489.json b/public/organe/PO50489.json new file mode 100644 index 0000000..99770e7 --- /dev/null +++ b/public/organe/PO50489.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50489", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO50490.json b/public/organe/PO50490.json new file mode 100644 index 0000000..3765303 --- /dev/null +++ b/public/organe/PO50490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50490", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO50491.json b/public/organe/PO50491.json new file mode 100644 index 0000000..f02cce4 --- /dev/null +++ b/public/organe/PO50491.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50491", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO50492.json b/public/organe/PO50492.json new file mode 100644 index 0000000..6f48a9f --- /dev/null +++ b/public/organe/PO50492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50492", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO50493.json b/public/organe/PO50493.json new file mode 100644 index 0000000..efa2bcb --- /dev/null +++ b/public/organe/PO50493.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50493", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50494.json b/public/organe/PO50494.json new file mode 100644 index 0000000..95a6602 --- /dev/null +++ b/public/organe/PO50494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50494", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50495.json b/public/organe/PO50495.json new file mode 100644 index 0000000..a993b4b --- /dev/null +++ b/public/organe/PO50495.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50495", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50496.json b/public/organe/PO50496.json new file mode 100644 index 0000000..a4759d4 --- /dev/null +++ b/public/organe/PO50496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50496", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50497.json b/public/organe/PO50497.json new file mode 100644 index 0000000..4666b8d --- /dev/null +++ b/public/organe/PO50497.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50497", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50498.json b/public/organe/PO50498.json new file mode 100644 index 0000000..1567bb5 --- /dev/null +++ b/public/organe/PO50498.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50498", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50499.json b/public/organe/PO50499.json new file mode 100644 index 0000000..58cf3d1 --- /dev/null +++ b/public/organe/PO50499.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50499", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50500.json b/public/organe/PO50500.json new file mode 100644 index 0000000..855f74d --- /dev/null +++ b/public/organe/PO50500.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50500", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50501.json b/public/organe/PO50501.json new file mode 100644 index 0000000..4737ed5 --- /dev/null +++ b/public/organe/PO50501.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50501", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50502.json b/public/organe/PO50502.json new file mode 100644 index 0000000..4c14a71 --- /dev/null +++ b/public/organe/PO50502.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50502", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50503.json b/public/organe/PO50503.json new file mode 100644 index 0000000..b64a146 --- /dev/null +++ b/public/organe/PO50503.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50503", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50504.json b/public/organe/PO50504.json new file mode 100644 index 0000000..91fc810 --- /dev/null +++ b/public/organe/PO50504.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50504", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50505.json b/public/organe/PO50505.json new file mode 100644 index 0000000..4136c77 --- /dev/null +++ b/public/organe/PO50505.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50505", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50506.json b/public/organe/PO50506.json new file mode 100644 index 0000000..7bf3702 --- /dev/null +++ b/public/organe/PO50506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50506", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50507.json b/public/organe/PO50507.json new file mode 100644 index 0000000..ebd7a02 --- /dev/null +++ b/public/organe/PO50507.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50507", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50508.json b/public/organe/PO50508.json new file mode 100644 index 0000000..e64ec12 --- /dev/null +++ b/public/organe/PO50508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50508", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50509.json b/public/organe/PO50509.json new file mode 100644 index 0000000..1d614a5 --- /dev/null +++ b/public/organe/PO50509.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50509", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO50510.json b/public/organe/PO50510.json new file mode 100644 index 0000000..d9d0c53 --- /dev/null +++ b/public/organe/PO50510.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50510", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50511.json b/public/organe/PO50511.json new file mode 100644 index 0000000..f045d7f --- /dev/null +++ b/public/organe/PO50511.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50511", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50512.json b/public/organe/PO50512.json new file mode 100644 index 0000000..52c2c93 --- /dev/null +++ b/public/organe/PO50512.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50512", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50513.json b/public/organe/PO50513.json new file mode 100644 index 0000000..ae44fe0 --- /dev/null +++ b/public/organe/PO50513.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50513", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50514.json b/public/organe/PO50514.json new file mode 100644 index 0000000..f62d7ff --- /dev/null +++ b/public/organe/PO50514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50514", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50515.json b/public/organe/PO50515.json new file mode 100644 index 0000000..e49e01e --- /dev/null +++ b/public/organe/PO50515.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50515", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50516.json b/public/organe/PO50516.json new file mode 100644 index 0000000..ae044c8 --- /dev/null +++ b/public/organe/PO50516.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50516", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50517.json b/public/organe/PO50517.json new file mode 100644 index 0000000..5af38d7 --- /dev/null +++ b/public/organe/PO50517.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50517", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50518.json b/public/organe/PO50518.json new file mode 100644 index 0000000..072f2fb --- /dev/null +++ b/public/organe/PO50518.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50518", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50519.json b/public/organe/PO50519.json new file mode 100644 index 0000000..9543a89 --- /dev/null +++ b/public/organe/PO50519.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50519", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50520.json b/public/organe/PO50520.json new file mode 100644 index 0000000..e92470a --- /dev/null +++ b/public/organe/PO50520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50520", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50521.json b/public/organe/PO50521.json new file mode 100644 index 0000000..e3cc6d3 --- /dev/null +++ b/public/organe/PO50521.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50521", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50522.json b/public/organe/PO50522.json new file mode 100644 index 0000000..de4ba03 --- /dev/null +++ b/public/organe/PO50522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50522", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50523.json b/public/organe/PO50523.json new file mode 100644 index 0000000..d4974d8 --- /dev/null +++ b/public/organe/PO50523.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50523", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50524.json b/public/organe/PO50524.json new file mode 100644 index 0000000..6d5f473 --- /dev/null +++ b/public/organe/PO50524.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50524", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50525.json b/public/organe/PO50525.json new file mode 100644 index 0000000..5b55b60 --- /dev/null +++ b/public/organe/PO50525.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50525", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO50526.json b/public/organe/PO50526.json new file mode 100644 index 0000000..b26e14d --- /dev/null +++ b/public/organe/PO50526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50526", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50527.json b/public/organe/PO50527.json new file mode 100644 index 0000000..9792593 --- /dev/null +++ b/public/organe/PO50527.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50527", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50528.json b/public/organe/PO50528.json new file mode 100644 index 0000000..aab2633 --- /dev/null +++ b/public/organe/PO50528.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50528", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50529.json b/public/organe/PO50529.json new file mode 100644 index 0000000..4086538 --- /dev/null +++ b/public/organe/PO50529.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50529", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50530.json b/public/organe/PO50530.json new file mode 100644 index 0000000..9cb6f1a --- /dev/null +++ b/public/organe/PO50530.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50530", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50531.json b/public/organe/PO50531.json new file mode 100644 index 0000000..62f9b6c --- /dev/null +++ b/public/organe/PO50531.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50531", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50532.json b/public/organe/PO50532.json new file mode 100644 index 0000000..54df390 --- /dev/null +++ b/public/organe/PO50532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50532", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50533.json b/public/organe/PO50533.json new file mode 100644 index 0000000..fa3e84c --- /dev/null +++ b/public/organe/PO50533.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50533", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50534.json b/public/organe/PO50534.json new file mode 100644 index 0000000..0772c64 --- /dev/null +++ b/public/organe/PO50534.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50534", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50535.json b/public/organe/PO50535.json new file mode 100644 index 0000000..c3d278b --- /dev/null +++ b/public/organe/PO50535.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50535", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50536.json b/public/organe/PO50536.json new file mode 100644 index 0000000..541f112 --- /dev/null +++ b/public/organe/PO50536.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50536", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50537.json b/public/organe/PO50537.json new file mode 100644 index 0000000..6145a66 --- /dev/null +++ b/public/organe/PO50537.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50537", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50538.json b/public/organe/PO50538.json new file mode 100644 index 0000000..1b2052d --- /dev/null +++ b/public/organe/PO50538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50538", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50539.json b/public/organe/PO50539.json new file mode 100644 index 0000000..468e429 --- /dev/null +++ b/public/organe/PO50539.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50539", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50540.json b/public/organe/PO50540.json new file mode 100644 index 0000000..90494f9 --- /dev/null +++ b/public/organe/PO50540.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50540", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50541.json b/public/organe/PO50541.json new file mode 100644 index 0000000..5095b22 --- /dev/null +++ b/public/organe/PO50541.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50541", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50542.json b/public/organe/PO50542.json new file mode 100644 index 0000000..f50d22f --- /dev/null +++ b/public/organe/PO50542.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50542", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50543.json b/public/organe/PO50543.json new file mode 100644 index 0000000..ed9bdfd --- /dev/null +++ b/public/organe/PO50543.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50543", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO50544.json b/public/organe/PO50544.json new file mode 100644 index 0000000..5843b90 --- /dev/null +++ b/public/organe/PO50544.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50544", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1945-11-06", "dateAgrement": null, "dateFin": "1946-06-10"}, "organeParent": null, "chambre": null, "regime": "Assembl\u00e9es nationales constituantes", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50546.json b/public/organe/PO50546.json new file mode 100644 index 0000000..22e3192 --- /dev/null +++ b/public/organe/PO50546.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50546", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1946-11-28", "dateAgrement": null, "dateFin": "1951-07-04"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50547.json b/public/organe/PO50547.json new file mode 100644 index 0000000..71eb265 --- /dev/null +++ b/public/organe/PO50547.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50547", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50548.json b/public/organe/PO50548.json new file mode 100644 index 0000000..f714760 --- /dev/null +++ b/public/organe/PO50548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50548", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50549.json b/public/organe/PO50549.json new file mode 100644 index 0000000..26c8bad --- /dev/null +++ b/public/organe/PO50549.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50549", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50550.json b/public/organe/PO50550.json new file mode 100644 index 0000000..92f12b6 --- /dev/null +++ b/public/organe/PO50550.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50550", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50551.json b/public/organe/PO50551.json new file mode 100644 index 0000000..4e815aa --- /dev/null +++ b/public/organe/PO50551.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50551", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50552.json b/public/organe/PO50552.json new file mode 100644 index 0000000..7609db2 --- /dev/null +++ b/public/organe/PO50552.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50552", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50553.json b/public/organe/PO50553.json new file mode 100644 index 0000000..02ef0a8 --- /dev/null +++ b/public/organe/PO50553.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50553", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50554.json b/public/organe/PO50554.json new file mode 100644 index 0000000..3451d6b --- /dev/null +++ b/public/organe/PO50554.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50554", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50555.json b/public/organe/PO50555.json new file mode 100644 index 0000000..41f93fb --- /dev/null +++ b/public/organe/PO50555.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50555", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50556.json b/public/organe/PO50556.json new file mode 100644 index 0000000..1dd939d --- /dev/null +++ b/public/organe/PO50556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50556", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50557.json b/public/organe/PO50557.json new file mode 100644 index 0000000..192ccbd --- /dev/null +++ b/public/organe/PO50557.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50557", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50558.json b/public/organe/PO50558.json new file mode 100644 index 0000000..3394a4e --- /dev/null +++ b/public/organe/PO50558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50558", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50559.json b/public/organe/PO50559.json new file mode 100644 index 0000000..5322a31 --- /dev/null +++ b/public/organe/PO50559.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50559", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50560.json b/public/organe/PO50560.json new file mode 100644 index 0000000..fe2cc5d --- /dev/null +++ b/public/organe/PO50560.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50560", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50561.json b/public/organe/PO50561.json new file mode 100644 index 0000000..3063d42 --- /dev/null +++ b/public/organe/PO50561.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50561", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50562.json b/public/organe/PO50562.json new file mode 100644 index 0000000..9a162eb --- /dev/null +++ b/public/organe/PO50562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50562", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50563.json b/public/organe/PO50563.json new file mode 100644 index 0000000..f10f0fe --- /dev/null +++ b/public/organe/PO50563.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50563", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50564.json b/public/organe/PO50564.json new file mode 100644 index 0000000..b894b7b --- /dev/null +++ b/public/organe/PO50564.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50564", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50565.json b/public/organe/PO50565.json new file mode 100644 index 0000000..ff6fb8f --- /dev/null +++ b/public/organe/PO50565.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50565", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50566.json b/public/organe/PO50566.json new file mode 100644 index 0000000..3f49250 --- /dev/null +++ b/public/organe/PO50566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50566", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50567.json b/public/organe/PO50567.json new file mode 100644 index 0000000..754e466 --- /dev/null +++ b/public/organe/PO50567.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50567", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50568.json b/public/organe/PO50568.json new file mode 100644 index 0000000..2becc88 --- /dev/null +++ b/public/organe/PO50568.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50568", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50569.json b/public/organe/PO50569.json new file mode 100644 index 0000000..68c79bd --- /dev/null +++ b/public/organe/PO50569.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50569", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50570.json b/public/organe/PO50570.json new file mode 100644 index 0000000..b9422c5 --- /dev/null +++ b/public/organe/PO50570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50570", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50571.json b/public/organe/PO50571.json new file mode 100644 index 0000000..0182ae3 --- /dev/null +++ b/public/organe/PO50571.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50571", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50572.json b/public/organe/PO50572.json new file mode 100644 index 0000000..cac7ab4 --- /dev/null +++ b/public/organe/PO50572.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50572", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50573.json b/public/organe/PO50573.json new file mode 100644 index 0000000..eeb499a --- /dev/null +++ b/public/organe/PO50573.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50573", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50574.json b/public/organe/PO50574.json new file mode 100644 index 0000000..d8af020 --- /dev/null +++ b/public/organe/PO50574.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50574", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50575.json b/public/organe/PO50575.json new file mode 100644 index 0000000..3021aca --- /dev/null +++ b/public/organe/PO50575.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50575", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50576.json b/public/organe/PO50576.json new file mode 100644 index 0000000..fefcc26 --- /dev/null +++ b/public/organe/PO50576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50576", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50577.json b/public/organe/PO50577.json new file mode 100644 index 0000000..9f47e4b --- /dev/null +++ b/public/organe/PO50577.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50577", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50578.json b/public/organe/PO50578.json new file mode 100644 index 0000000..00c0403 --- /dev/null +++ b/public/organe/PO50578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50578", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50579.json b/public/organe/PO50579.json new file mode 100644 index 0000000..79e7d79 --- /dev/null +++ b/public/organe/PO50579.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50579", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50580.json b/public/organe/PO50580.json new file mode 100644 index 0000000..55d4615 --- /dev/null +++ b/public/organe/PO50580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50580", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50581.json b/public/organe/PO50581.json new file mode 100644 index 0000000..3a910f2 --- /dev/null +++ b/public/organe/PO50581.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50581", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50582.json b/public/organe/PO50582.json new file mode 100644 index 0000000..7878312 --- /dev/null +++ b/public/organe/PO50582.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50582", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50583.json b/public/organe/PO50583.json new file mode 100644 index 0000000..f95afb0 --- /dev/null +++ b/public/organe/PO50583.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50583", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50584.json b/public/organe/PO50584.json new file mode 100644 index 0000000..d127359 --- /dev/null +++ b/public/organe/PO50584.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50584", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50585.json b/public/organe/PO50585.json new file mode 100644 index 0000000..a8da4d0 --- /dev/null +++ b/public/organe/PO50585.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50585", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50586.json b/public/organe/PO50586.json new file mode 100644 index 0000000..96bd565 --- /dev/null +++ b/public/organe/PO50586.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50586", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50587.json b/public/organe/PO50587.json new file mode 100644 index 0000000..19f7c36 --- /dev/null +++ b/public/organe/PO50587.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50587", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50588.json b/public/organe/PO50588.json new file mode 100644 index 0000000..d942131 --- /dev/null +++ b/public/organe/PO50588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50588", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50589.json b/public/organe/PO50589.json new file mode 100644 index 0000000..c39a35e --- /dev/null +++ b/public/organe/PO50589.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50589", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50590.json b/public/organe/PO50590.json new file mode 100644 index 0000000..61ac5d0 --- /dev/null +++ b/public/organe/PO50590.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50590", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50591.json b/public/organe/PO50591.json new file mode 100644 index 0000000..30168d6 --- /dev/null +++ b/public/organe/PO50591.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50591", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50592.json b/public/organe/PO50592.json new file mode 100644 index 0000000..72d1e2f --- /dev/null +++ b/public/organe/PO50592.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50592", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50593.json b/public/organe/PO50593.json new file mode 100644 index 0000000..da3c991 --- /dev/null +++ b/public/organe/PO50593.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50593", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50594.json b/public/organe/PO50594.json new file mode 100644 index 0000000..16fa929 --- /dev/null +++ b/public/organe/PO50594.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50594", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50595.json b/public/organe/PO50595.json new file mode 100644 index 0000000..64df321 --- /dev/null +++ b/public/organe/PO50595.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50595", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50596.json b/public/organe/PO50596.json new file mode 100644 index 0000000..445328c --- /dev/null +++ b/public/organe/PO50596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50596", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50597.json b/public/organe/PO50597.json new file mode 100644 index 0000000..b9576fe --- /dev/null +++ b/public/organe/PO50597.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50597", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50598.json b/public/organe/PO50598.json new file mode 100644 index 0000000..8c486c1 --- /dev/null +++ b/public/organe/PO50598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50598", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50599.json b/public/organe/PO50599.json new file mode 100644 index 0000000..08dc77a --- /dev/null +++ b/public/organe/PO50599.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50599", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50600.json b/public/organe/PO50600.json new file mode 100644 index 0000000..47fbdcb --- /dev/null +++ b/public/organe/PO50600.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50600", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50601.json b/public/organe/PO50601.json new file mode 100644 index 0000000..0edf59b --- /dev/null +++ b/public/organe/PO50601.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50601", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50602.json b/public/organe/PO50602.json new file mode 100644 index 0000000..aef7630 --- /dev/null +++ b/public/organe/PO50602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50602", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50603.json b/public/organe/PO50603.json new file mode 100644 index 0000000..b1fca5a --- /dev/null +++ b/public/organe/PO50603.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50603", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50604.json b/public/organe/PO50604.json new file mode 100644 index 0000000..f615512 --- /dev/null +++ b/public/organe/PO50604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50604", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50605.json b/public/organe/PO50605.json new file mode 100644 index 0000000..17df6e8 --- /dev/null +++ b/public/organe/PO50605.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50605", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50606.json b/public/organe/PO50606.json new file mode 100644 index 0000000..d80cc70 --- /dev/null +++ b/public/organe/PO50606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50606", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50607.json b/public/organe/PO50607.json new file mode 100644 index 0000000..3fe3496 --- /dev/null +++ b/public/organe/PO50607.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50607", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50608.json b/public/organe/PO50608.json new file mode 100644 index 0000000..2a4fc0c --- /dev/null +++ b/public/organe/PO50608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50608", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50609.json b/public/organe/PO50609.json new file mode 100644 index 0000000..05bef54 --- /dev/null +++ b/public/organe/PO50609.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50609", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50610.json b/public/organe/PO50610.json new file mode 100644 index 0000000..77dd339 --- /dev/null +++ b/public/organe/PO50610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50610", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50611.json b/public/organe/PO50611.json new file mode 100644 index 0000000..d8f305c --- /dev/null +++ b/public/organe/PO50611.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50611", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50612.json b/public/organe/PO50612.json new file mode 100644 index 0000000..589a54f --- /dev/null +++ b/public/organe/PO50612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50612", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50613.json b/public/organe/PO50613.json new file mode 100644 index 0000000..a7e30e3 --- /dev/null +++ b/public/organe/PO50613.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50613", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50614.json b/public/organe/PO50614.json new file mode 100644 index 0000000..7676c62 --- /dev/null +++ b/public/organe/PO50614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50614", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50615.json b/public/organe/PO50615.json new file mode 100644 index 0000000..911f04e --- /dev/null +++ b/public/organe/PO50615.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50615", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50616.json b/public/organe/PO50616.json new file mode 100644 index 0000000..19e8045 --- /dev/null +++ b/public/organe/PO50616.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50616", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50617.json b/public/organe/PO50617.json new file mode 100644 index 0000000..2b93728 --- /dev/null +++ b/public/organe/PO50617.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50617", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO50618.json b/public/organe/PO50618.json new file mode 100644 index 0000000..894a77c --- /dev/null +++ b/public/organe/PO50618.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50618", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50619.json b/public/organe/PO50619.json new file mode 100644 index 0000000..55eb4de --- /dev/null +++ b/public/organe/PO50619.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50619", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50620.json b/public/organe/PO50620.json new file mode 100644 index 0000000..e4f1912 --- /dev/null +++ b/public/organe/PO50620.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50620", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50621.json b/public/organe/PO50621.json new file mode 100644 index 0000000..05b89ba --- /dev/null +++ b/public/organe/PO50621.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50621", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50622.json b/public/organe/PO50622.json new file mode 100644 index 0000000..f2053ca --- /dev/null +++ b/public/organe/PO50622.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50622", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50623.json b/public/organe/PO50623.json new file mode 100644 index 0000000..b438132 --- /dev/null +++ b/public/organe/PO50623.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50623", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50624.json b/public/organe/PO50624.json new file mode 100644 index 0000000..6800c9f --- /dev/null +++ b/public/organe/PO50624.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50624", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50625.json b/public/organe/PO50625.json new file mode 100644 index 0000000..f29940c --- /dev/null +++ b/public/organe/PO50625.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50625", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50626.json b/public/organe/PO50626.json new file mode 100644 index 0000000..3902068 --- /dev/null +++ b/public/organe/PO50626.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50626", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50627.json b/public/organe/PO50627.json new file mode 100644 index 0000000..dad8267 --- /dev/null +++ b/public/organe/PO50627.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50627", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50628.json b/public/organe/PO50628.json new file mode 100644 index 0000000..a9bea05 --- /dev/null +++ b/public/organe/PO50628.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50628", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50629.json b/public/organe/PO50629.json new file mode 100644 index 0000000..aa46368 --- /dev/null +++ b/public/organe/PO50629.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50629", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50630.json b/public/organe/PO50630.json new file mode 100644 index 0000000..6ecb893 --- /dev/null +++ b/public/organe/PO50630.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50630", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50631.json b/public/organe/PO50631.json new file mode 100644 index 0000000..d509afe --- /dev/null +++ b/public/organe/PO50631.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50631", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50632.json b/public/organe/PO50632.json new file mode 100644 index 0000000..34a24a0 --- /dev/null +++ b/public/organe/PO50632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50632", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50633.json b/public/organe/PO50633.json new file mode 100644 index 0000000..cb285e8 --- /dev/null +++ b/public/organe/PO50633.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50633", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50634.json b/public/organe/PO50634.json new file mode 100644 index 0000000..bba048f --- /dev/null +++ b/public/organe/PO50634.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50634", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50635.json b/public/organe/PO50635.json new file mode 100644 index 0000000..8f36238 --- /dev/null +++ b/public/organe/PO50635.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50635", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50636.json b/public/organe/PO50636.json new file mode 100644 index 0000000..e254ae3 --- /dev/null +++ b/public/organe/PO50636.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50636", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50637.json b/public/organe/PO50637.json new file mode 100644 index 0000000..4ba92a1 --- /dev/null +++ b/public/organe/PO50637.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50637", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50638.json b/public/organe/PO50638.json new file mode 100644 index 0000000..687da17 --- /dev/null +++ b/public/organe/PO50638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50638", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50639.json b/public/organe/PO50639.json new file mode 100644 index 0000000..3674136 --- /dev/null +++ b/public/organe/PO50639.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50639", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50640.json b/public/organe/PO50640.json new file mode 100644 index 0000000..33c2872 --- /dev/null +++ b/public/organe/PO50640.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50640", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50641.json b/public/organe/PO50641.json new file mode 100644 index 0000000..b93475e --- /dev/null +++ b/public/organe/PO50641.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50641", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50642.json b/public/organe/PO50642.json new file mode 100644 index 0000000..a16328e --- /dev/null +++ b/public/organe/PO50642.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50642", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50643.json b/public/organe/PO50643.json new file mode 100644 index 0000000..4faf54f --- /dev/null +++ b/public/organe/PO50643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50643", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50644.json b/public/organe/PO50644.json new file mode 100644 index 0000000..80008e7 --- /dev/null +++ b/public/organe/PO50644.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50644", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50645.json b/public/organe/PO50645.json new file mode 100644 index 0000000..47f5ade --- /dev/null +++ b/public/organe/PO50645.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50645", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50646.json b/public/organe/PO50646.json new file mode 100644 index 0000000..4d7dfd8 --- /dev/null +++ b/public/organe/PO50646.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50646", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50647.json b/public/organe/PO50647.json new file mode 100644 index 0000000..025e59f --- /dev/null +++ b/public/organe/PO50647.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50647", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50648.json b/public/organe/PO50648.json new file mode 100644 index 0000000..1f020b4 --- /dev/null +++ b/public/organe/PO50648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50648", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50649.json b/public/organe/PO50649.json new file mode 100644 index 0000000..2b68314 --- /dev/null +++ b/public/organe/PO50649.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50649", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50650.json b/public/organe/PO50650.json new file mode 100644 index 0000000..a184925 --- /dev/null +++ b/public/organe/PO50650.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50650", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50651.json b/public/organe/PO50651.json new file mode 100644 index 0000000..ef98edd --- /dev/null +++ b/public/organe/PO50651.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50651", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO50652.json b/public/organe/PO50652.json new file mode 100644 index 0000000..567cd87 --- /dev/null +++ b/public/organe/PO50652.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50652", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50653.json b/public/organe/PO50653.json new file mode 100644 index 0000000..8efeeb7 --- /dev/null +++ b/public/organe/PO50653.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50653", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50654.json b/public/organe/PO50654.json new file mode 100644 index 0000000..152ddb6 --- /dev/null +++ b/public/organe/PO50654.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50654", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50655.json b/public/organe/PO50655.json new file mode 100644 index 0000000..9ef5b6e --- /dev/null +++ b/public/organe/PO50655.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50655", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50656.json b/public/organe/PO50656.json new file mode 100644 index 0000000..95933a7 --- /dev/null +++ b/public/organe/PO50656.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50656", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50657.json b/public/organe/PO50657.json new file mode 100644 index 0000000..8760c30 --- /dev/null +++ b/public/organe/PO50657.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50657", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50658.json b/public/organe/PO50658.json new file mode 100644 index 0000000..d2bb420 --- /dev/null +++ b/public/organe/PO50658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50658", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50659.json b/public/organe/PO50659.json new file mode 100644 index 0000000..8c9067d --- /dev/null +++ b/public/organe/PO50659.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50659", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50660.json b/public/organe/PO50660.json new file mode 100644 index 0000000..15c5a6d --- /dev/null +++ b/public/organe/PO50660.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50660", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50661.json b/public/organe/PO50661.json new file mode 100644 index 0000000..0478791 --- /dev/null +++ b/public/organe/PO50661.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50661", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50662.json b/public/organe/PO50662.json new file mode 100644 index 0000000..866d49d --- /dev/null +++ b/public/organe/PO50662.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50662", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50663.json b/public/organe/PO50663.json new file mode 100644 index 0000000..75a175b --- /dev/null +++ b/public/organe/PO50663.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50663", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50664.json b/public/organe/PO50664.json new file mode 100644 index 0000000..0372327 --- /dev/null +++ b/public/organe/PO50664.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50664", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO50665.json b/public/organe/PO50665.json new file mode 100644 index 0000000..4519cee --- /dev/null +++ b/public/organe/PO50665.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50665", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50666.json b/public/organe/PO50666.json new file mode 100644 index 0000000..14919d9 --- /dev/null +++ b/public/organe/PO50666.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50666", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50667.json b/public/organe/PO50667.json new file mode 100644 index 0000000..ad8f3ad --- /dev/null +++ b/public/organe/PO50667.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50667", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50668.json b/public/organe/PO50668.json new file mode 100644 index 0000000..1b9de5d --- /dev/null +++ b/public/organe/PO50668.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50668", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50669.json b/public/organe/PO50669.json new file mode 100644 index 0000000..c4bda0a --- /dev/null +++ b/public/organe/PO50669.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50669", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50670.json b/public/organe/PO50670.json new file mode 100644 index 0000000..ca4a254 --- /dev/null +++ b/public/organe/PO50670.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50670", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50671.json b/public/organe/PO50671.json new file mode 100644 index 0000000..31e83b9 --- /dev/null +++ b/public/organe/PO50671.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50671", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50672.json b/public/organe/PO50672.json new file mode 100644 index 0000000..f1646a1 --- /dev/null +++ b/public/organe/PO50672.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50672", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50673.json b/public/organe/PO50673.json new file mode 100644 index 0000000..1982ccd --- /dev/null +++ b/public/organe/PO50673.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50673", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50674.json b/public/organe/PO50674.json new file mode 100644 index 0000000..90a65cf --- /dev/null +++ b/public/organe/PO50674.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50674", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50675.json b/public/organe/PO50675.json new file mode 100644 index 0000000..a7ad6cc --- /dev/null +++ b/public/organe/PO50675.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50675", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50676.json b/public/organe/PO50676.json new file mode 100644 index 0000000..2dfd12c --- /dev/null +++ b/public/organe/PO50676.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50676", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50677.json b/public/organe/PO50677.json new file mode 100644 index 0000000..2e2734d --- /dev/null +++ b/public/organe/PO50677.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50677", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50678.json b/public/organe/PO50678.json new file mode 100644 index 0000000..1586380 --- /dev/null +++ b/public/organe/PO50678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50678", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50679.json b/public/organe/PO50679.json new file mode 100644 index 0000000..9a42721 --- /dev/null +++ b/public/organe/PO50679.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50679", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50680.json b/public/organe/PO50680.json new file mode 100644 index 0000000..a2e4782 --- /dev/null +++ b/public/organe/PO50680.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50680", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50681.json b/public/organe/PO50681.json new file mode 100644 index 0000000..b08c0d2 --- /dev/null +++ b/public/organe/PO50681.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50681", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50682.json b/public/organe/PO50682.json new file mode 100644 index 0000000..c238512 --- /dev/null +++ b/public/organe/PO50682.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50682", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50683.json b/public/organe/PO50683.json new file mode 100644 index 0000000..d469e6b --- /dev/null +++ b/public/organe/PO50683.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50683", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO50684.json b/public/organe/PO50684.json new file mode 100644 index 0000000..4608b7e --- /dev/null +++ b/public/organe/PO50684.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50684", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50685.json b/public/organe/PO50685.json new file mode 100644 index 0000000..94a4c0c --- /dev/null +++ b/public/organe/PO50685.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50685", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50686.json b/public/organe/PO50686.json new file mode 100644 index 0000000..8a4eb32 --- /dev/null +++ b/public/organe/PO50686.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50686", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50687.json b/public/organe/PO50687.json new file mode 100644 index 0000000..3b2a358 --- /dev/null +++ b/public/organe/PO50687.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50687", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50688.json b/public/organe/PO50688.json new file mode 100644 index 0000000..d639dc1 --- /dev/null +++ b/public/organe/PO50688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50688", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50689.json b/public/organe/PO50689.json new file mode 100644 index 0000000..0dd3aed --- /dev/null +++ b/public/organe/PO50689.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50689", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50690.json b/public/organe/PO50690.json new file mode 100644 index 0000000..e31b83f --- /dev/null +++ b/public/organe/PO50690.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50690", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50691.json b/public/organe/PO50691.json new file mode 100644 index 0000000..226948c --- /dev/null +++ b/public/organe/PO50691.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50691", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50692.json b/public/organe/PO50692.json new file mode 100644 index 0000000..41f6d21 --- /dev/null +++ b/public/organe/PO50692.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50692", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50693.json b/public/organe/PO50693.json new file mode 100644 index 0000000..0f5aeb4 --- /dev/null +++ b/public/organe/PO50693.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50693", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50694.json b/public/organe/PO50694.json new file mode 100644 index 0000000..dbac3f3 --- /dev/null +++ b/public/organe/PO50694.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50694", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50695.json b/public/organe/PO50695.json new file mode 100644 index 0000000..95c85fa --- /dev/null +++ b/public/organe/PO50695.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50695", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50696.json b/public/organe/PO50696.json new file mode 100644 index 0000000..704506f --- /dev/null +++ b/public/organe/PO50696.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50696", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50697.json b/public/organe/PO50697.json new file mode 100644 index 0000000..4d398c3 --- /dev/null +++ b/public/organe/PO50697.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50697", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50698.json b/public/organe/PO50698.json new file mode 100644 index 0000000..ba97014 --- /dev/null +++ b/public/organe/PO50698.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50698", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50699.json b/public/organe/PO50699.json new file mode 100644 index 0000000..228d3a7 --- /dev/null +++ b/public/organe/PO50699.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50699", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50700.json b/public/organe/PO50700.json new file mode 100644 index 0000000..23774d9 --- /dev/null +++ b/public/organe/PO50700.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50700", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50701.json b/public/organe/PO50701.json new file mode 100644 index 0000000..b25dfa7 --- /dev/null +++ b/public/organe/PO50701.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50701", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50702.json b/public/organe/PO50702.json new file mode 100644 index 0000000..1471b98 --- /dev/null +++ b/public/organe/PO50702.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50702", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50703.json b/public/organe/PO50703.json new file mode 100644 index 0000000..342290d --- /dev/null +++ b/public/organe/PO50703.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50703", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50704.json b/public/organe/PO50704.json new file mode 100644 index 0000000..4feb534 --- /dev/null +++ b/public/organe/PO50704.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50704", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50705.json b/public/organe/PO50705.json new file mode 100644 index 0000000..336d85e --- /dev/null +++ b/public/organe/PO50705.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50705", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50706.json b/public/organe/PO50706.json new file mode 100644 index 0000000..c688e4d --- /dev/null +++ b/public/organe/PO50706.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50706", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50707.json b/public/organe/PO50707.json new file mode 100644 index 0000000..0ff60a0 --- /dev/null +++ b/public/organe/PO50707.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50707", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50708.json b/public/organe/PO50708.json new file mode 100644 index 0000000..c5333c0 --- /dev/null +++ b/public/organe/PO50708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50708", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50709.json b/public/organe/PO50709.json new file mode 100644 index 0000000..8e73651 --- /dev/null +++ b/public/organe/PO50709.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50709", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50710.json b/public/organe/PO50710.json new file mode 100644 index 0000000..d434355 --- /dev/null +++ b/public/organe/PO50710.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50710", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50711.json b/public/organe/PO50711.json new file mode 100644 index 0000000..9102019 --- /dev/null +++ b/public/organe/PO50711.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50711", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50712.json b/public/organe/PO50712.json new file mode 100644 index 0000000..ea27eca --- /dev/null +++ b/public/organe/PO50712.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50712", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50713.json b/public/organe/PO50713.json new file mode 100644 index 0000000..70ae43b --- /dev/null +++ b/public/organe/PO50713.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50713", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50714.json b/public/organe/PO50714.json new file mode 100644 index 0000000..f9e8f6c --- /dev/null +++ b/public/organe/PO50714.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50714", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50715.json b/public/organe/PO50715.json new file mode 100644 index 0000000..46ce939 --- /dev/null +++ b/public/organe/PO50715.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50715", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO50716.json b/public/organe/PO50716.json new file mode 100644 index 0000000..1058dc1 --- /dev/null +++ b/public/organe/PO50716.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50716", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50717.json b/public/organe/PO50717.json new file mode 100644 index 0000000..57dddb3 --- /dev/null +++ b/public/organe/PO50717.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50717", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50718.json b/public/organe/PO50718.json new file mode 100644 index 0000000..9d7d085 --- /dev/null +++ b/public/organe/PO50718.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50718", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50719.json b/public/organe/PO50719.json new file mode 100644 index 0000000..e007737 --- /dev/null +++ b/public/organe/PO50719.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50719", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50720.json b/public/organe/PO50720.json new file mode 100644 index 0000000..11faca3 --- /dev/null +++ b/public/organe/PO50720.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50720", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50721.json b/public/organe/PO50721.json new file mode 100644 index 0000000..ab832c3 --- /dev/null +++ b/public/organe/PO50721.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50721", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50722.json b/public/organe/PO50722.json new file mode 100644 index 0000000..2b60ea1 --- /dev/null +++ b/public/organe/PO50722.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50722", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50723.json b/public/organe/PO50723.json new file mode 100644 index 0000000..5420e09 --- /dev/null +++ b/public/organe/PO50723.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50723", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50724.json b/public/organe/PO50724.json new file mode 100644 index 0000000..68e0224 --- /dev/null +++ b/public/organe/PO50724.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50724", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50725.json b/public/organe/PO50725.json new file mode 100644 index 0000000..7d56d5d --- /dev/null +++ b/public/organe/PO50725.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50725", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50726.json b/public/organe/PO50726.json new file mode 100644 index 0000000..a33542e --- /dev/null +++ b/public/organe/PO50726.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50726", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50727.json b/public/organe/PO50727.json new file mode 100644 index 0000000..8ab4acb --- /dev/null +++ b/public/organe/PO50727.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50727", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50728.json b/public/organe/PO50728.json new file mode 100644 index 0000000..3a440e2 --- /dev/null +++ b/public/organe/PO50728.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50728", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50729.json b/public/organe/PO50729.json new file mode 100644 index 0000000..c90e1d7 --- /dev/null +++ b/public/organe/PO50729.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50729", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO50730.json b/public/organe/PO50730.json new file mode 100644 index 0000000..117e228 --- /dev/null +++ b/public/organe/PO50730.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50730", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50731.json b/public/organe/PO50731.json new file mode 100644 index 0000000..8286bc0 --- /dev/null +++ b/public/organe/PO50731.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50731", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50732.json b/public/organe/PO50732.json new file mode 100644 index 0000000..5205ab1 --- /dev/null +++ b/public/organe/PO50732.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50732", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50733.json b/public/organe/PO50733.json new file mode 100644 index 0000000..a7b923b --- /dev/null +++ b/public/organe/PO50733.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50733", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50734.json b/public/organe/PO50734.json new file mode 100644 index 0000000..9df81d9 --- /dev/null +++ b/public/organe/PO50734.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50734", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50735.json b/public/organe/PO50735.json new file mode 100644 index 0000000..0ff3a90 --- /dev/null +++ b/public/organe/PO50735.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50735", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription n\u00b0 0 de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 0\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "0", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50736.json b/public/organe/PO50736.json new file mode 100644 index 0000000..cc22257 --- /dev/null +++ b/public/organe/PO50736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50736", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50737.json b/public/organe/PO50737.json new file mode 100644 index 0000000..6aa8e59 --- /dev/null +++ b/public/organe/PO50737.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50737", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50738.json b/public/organe/PO50738.json new file mode 100644 index 0000000..d05fbb4 --- /dev/null +++ b/public/organe/PO50738.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50738", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50739.json b/public/organe/PO50739.json new file mode 100644 index 0000000..b719e29 --- /dev/null +++ b/public/organe/PO50739.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50739", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50740.json b/public/organe/PO50740.json new file mode 100644 index 0000000..aecde12 --- /dev/null +++ b/public/organe/PO50740.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50740", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50741.json b/public/organe/PO50741.json new file mode 100644 index 0000000..70a66be --- /dev/null +++ b/public/organe/PO50741.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50741", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50742.json b/public/organe/PO50742.json new file mode 100644 index 0000000..501a037 --- /dev/null +++ b/public/organe/PO50742.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50742", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50743.json b/public/organe/PO50743.json new file mode 100644 index 0000000..34da158 --- /dev/null +++ b/public/organe/PO50743.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50743", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50744.json b/public/organe/PO50744.json new file mode 100644 index 0000000..538072d --- /dev/null +++ b/public/organe/PO50744.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50744", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50745.json b/public/organe/PO50745.json new file mode 100644 index 0000000..7e26506 --- /dev/null +++ b/public/organe/PO50745.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50745", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50746.json b/public/organe/PO50746.json new file mode 100644 index 0000000..99e3849 --- /dev/null +++ b/public/organe/PO50746.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50746", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50747.json b/public/organe/PO50747.json new file mode 100644 index 0000000..2e5de38 --- /dev/null +++ b/public/organe/PO50747.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50747", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50748.json b/public/organe/PO50748.json new file mode 100644 index 0000000..981c917 --- /dev/null +++ b/public/organe/PO50748.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50748", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50749.json b/public/organe/PO50749.json new file mode 100644 index 0000000..c439b56 --- /dev/null +++ b/public/organe/PO50749.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50749", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50750.json b/public/organe/PO50750.json new file mode 100644 index 0000000..b6eb6b7 --- /dev/null +++ b/public/organe/PO50750.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50750", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50751.json b/public/organe/PO50751.json new file mode 100644 index 0000000..49c3034 --- /dev/null +++ b/public/organe/PO50751.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50751", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO50752.json b/public/organe/PO50752.json new file mode 100644 index 0000000..4c867ac --- /dev/null +++ b/public/organe/PO50752.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50752", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "20 Corse", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "20", "libelle": "Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50753.json b/public/organe/PO50753.json new file mode 100644 index 0000000..f711b0b --- /dev/null +++ b/public/organe/PO50753.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50753", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "20 Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "20", "libelle": "Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50754.json b/public/organe/PO50754.json new file mode 100644 index 0000000..314c4ed --- /dev/null +++ b/public/organe/PO50754.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50754", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "20 Corse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "20", "libelle": "Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50755.json b/public/organe/PO50755.json new file mode 100644 index 0000000..213e2a5 --- /dev/null +++ b/public/organe/PO50755.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50755", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "20 Corse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "20", "libelle": "Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50756.json b/public/organe/PO50756.json new file mode 100644 index 0000000..242cb57 --- /dev/null +++ b/public/organe/PO50756.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50756", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "20 Corse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "20", "libelle": "Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50757.json b/public/organe/PO50757.json new file mode 100644 index 0000000..147edf5 --- /dev/null +++ b/public/organe/PO50757.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50757", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "20 Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "20", "libelle": "Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50758.json b/public/organe/PO50758.json new file mode 100644 index 0000000..1bd5ebb --- /dev/null +++ b/public/organe/PO50758.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50758", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "20 Corse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "20", "libelle": "Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50759.json b/public/organe/PO50759.json new file mode 100644 index 0000000..e8e9320 --- /dev/null +++ b/public/organe/PO50759.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50759", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "20 Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "20", "libelle": "Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50760.json b/public/organe/PO50760.json new file mode 100644 index 0000000..ee9897d --- /dev/null +++ b/public/organe/PO50760.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50760", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50761.json b/public/organe/PO50761.json new file mode 100644 index 0000000..7b00d93 --- /dev/null +++ b/public/organe/PO50761.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50761", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50762.json b/public/organe/PO50762.json new file mode 100644 index 0000000..8ef09ce --- /dev/null +++ b/public/organe/PO50762.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50762", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50763.json b/public/organe/PO50763.json new file mode 100644 index 0000000..0b21d2b --- /dev/null +++ b/public/organe/PO50763.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50763", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50764.json b/public/organe/PO50764.json new file mode 100644 index 0000000..e5fe4fa --- /dev/null +++ b/public/organe/PO50764.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50764", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50765.json b/public/organe/PO50765.json new file mode 100644 index 0000000..11dfb85 --- /dev/null +++ b/public/organe/PO50765.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50765", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50766.json b/public/organe/PO50766.json new file mode 100644 index 0000000..ed569f0 --- /dev/null +++ b/public/organe/PO50766.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50766", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50767.json b/public/organe/PO50767.json new file mode 100644 index 0000000..0d4ee5f --- /dev/null +++ b/public/organe/PO50767.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50767", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50768.json b/public/organe/PO50768.json new file mode 100644 index 0000000..0e4bd95 --- /dev/null +++ b/public/organe/PO50768.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50768", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50769.json b/public/organe/PO50769.json new file mode 100644 index 0000000..4f41675 --- /dev/null +++ b/public/organe/PO50769.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50769", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50770.json b/public/organe/PO50770.json new file mode 100644 index 0000000..e7ddd5c --- /dev/null +++ b/public/organe/PO50770.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50770", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50771.json b/public/organe/PO50771.json new file mode 100644 index 0000000..f270b17 --- /dev/null +++ b/public/organe/PO50771.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50771", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50772.json b/public/organe/PO50772.json new file mode 100644 index 0000000..50ba1f1 --- /dev/null +++ b/public/organe/PO50772.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50772", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50773.json b/public/organe/PO50773.json new file mode 100644 index 0000000..c81abff --- /dev/null +++ b/public/organe/PO50773.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50773", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50774.json b/public/organe/PO50774.json new file mode 100644 index 0000000..b1496b9 --- /dev/null +++ b/public/organe/PO50774.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50774", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50775.json b/public/organe/PO50775.json new file mode 100644 index 0000000..2a222bb --- /dev/null +++ b/public/organe/PO50775.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50775", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50776.json b/public/organe/PO50776.json new file mode 100644 index 0000000..0938a3c --- /dev/null +++ b/public/organe/PO50776.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50776", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50777.json b/public/organe/PO50777.json new file mode 100644 index 0000000..2878eda --- /dev/null +++ b/public/organe/PO50777.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50777", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50778.json b/public/organe/PO50778.json new file mode 100644 index 0000000..37f81bf --- /dev/null +++ b/public/organe/PO50778.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50778", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50779.json b/public/organe/PO50779.json new file mode 100644 index 0000000..c143ff7 --- /dev/null +++ b/public/organe/PO50779.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50779", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50780.json b/public/organe/PO50780.json new file mode 100644 index 0000000..f2e5d10 --- /dev/null +++ b/public/organe/PO50780.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50780", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50781.json b/public/organe/PO50781.json new file mode 100644 index 0000000..93eac89 --- /dev/null +++ b/public/organe/PO50781.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50781", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50782.json b/public/organe/PO50782.json new file mode 100644 index 0000000..06270e9 --- /dev/null +++ b/public/organe/PO50782.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50782", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50783.json b/public/organe/PO50783.json new file mode 100644 index 0000000..0a39fea --- /dev/null +++ b/public/organe/PO50783.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50783", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50784.json b/public/organe/PO50784.json new file mode 100644 index 0000000..7727f63 --- /dev/null +++ b/public/organe/PO50784.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50784", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50785.json b/public/organe/PO50785.json new file mode 100644 index 0000000..5a6283e --- /dev/null +++ b/public/organe/PO50785.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50785", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50786.json b/public/organe/PO50786.json new file mode 100644 index 0000000..ba83259 --- /dev/null +++ b/public/organe/PO50786.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50786", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50787.json b/public/organe/PO50787.json new file mode 100644 index 0000000..9279d8f --- /dev/null +++ b/public/organe/PO50787.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50787", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO50788.json b/public/organe/PO50788.json new file mode 100644 index 0000000..554a140 --- /dev/null +++ b/public/organe/PO50788.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50788", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des C\u00f4tes-du-Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-du-Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-du-Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO50789.json b/public/organe/PO50789.json new file mode 100644 index 0000000..afef945 --- /dev/null +++ b/public/organe/PO50789.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50789", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50790.json b/public/organe/PO50790.json new file mode 100644 index 0000000..858a685 --- /dev/null +++ b/public/organe/PO50790.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50790", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50791.json b/public/organe/PO50791.json new file mode 100644 index 0000000..81c5314 --- /dev/null +++ b/public/organe/PO50791.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50791", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50792.json b/public/organe/PO50792.json new file mode 100644 index 0000000..6f7d7e0 --- /dev/null +++ b/public/organe/PO50792.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50792", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50793.json b/public/organe/PO50793.json new file mode 100644 index 0000000..41384a3 --- /dev/null +++ b/public/organe/PO50793.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50793", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50794.json b/public/organe/PO50794.json new file mode 100644 index 0000000..3dfc302 --- /dev/null +++ b/public/organe/PO50794.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50794", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50795.json b/public/organe/PO50795.json new file mode 100644 index 0000000..d2e7318 --- /dev/null +++ b/public/organe/PO50795.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50795", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50796.json b/public/organe/PO50796.json new file mode 100644 index 0000000..fe29e12 --- /dev/null +++ b/public/organe/PO50796.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50796", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50797.json b/public/organe/PO50797.json new file mode 100644 index 0000000..65bf3f8 --- /dev/null +++ b/public/organe/PO50797.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50797", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50798.json b/public/organe/PO50798.json new file mode 100644 index 0000000..dc48140 --- /dev/null +++ b/public/organe/PO50798.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50798", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50799.json b/public/organe/PO50799.json new file mode 100644 index 0000000..3d1006b --- /dev/null +++ b/public/organe/PO50799.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50799", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50800.json b/public/organe/PO50800.json new file mode 100644 index 0000000..3588939 --- /dev/null +++ b/public/organe/PO50800.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50800", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50801.json b/public/organe/PO50801.json new file mode 100644 index 0000000..1ddc5fd --- /dev/null +++ b/public/organe/PO50801.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50801", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50802.json b/public/organe/PO50802.json new file mode 100644 index 0000000..e58f3d3 --- /dev/null +++ b/public/organe/PO50802.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50802", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50803.json b/public/organe/PO50803.json new file mode 100644 index 0000000..bd148b2 --- /dev/null +++ b/public/organe/PO50803.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50803", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO50804.json b/public/organe/PO50804.json new file mode 100644 index 0000000..aca5aac --- /dev/null +++ b/public/organe/PO50804.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50804", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-du-Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-du-Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-du-Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO50805.json b/public/organe/PO50805.json new file mode 100644 index 0000000..cfb2e46 --- /dev/null +++ b/public/organe/PO50805.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50805", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-du-Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-du-Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-du-Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO50806.json b/public/organe/PO50806.json new file mode 100644 index 0000000..d3b8e4a --- /dev/null +++ b/public/organe/PO50806.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50806", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-du-Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-du-Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-du-Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO50807.json b/public/organe/PO50807.json new file mode 100644 index 0000000..3865ea2 --- /dev/null +++ b/public/organe/PO50807.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50807", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-du-Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-du-Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-du-Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO50808.json b/public/organe/PO50808.json new file mode 100644 index 0000000..db27b13 --- /dev/null +++ b/public/organe/PO50808.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50808", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des C\u00f4tes-du-Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-du-Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-du-Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO50809.json b/public/organe/PO50809.json new file mode 100644 index 0000000..1c84d3c --- /dev/null +++ b/public/organe/PO50809.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50809", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-du-Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-du-Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-du-Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO50810.json b/public/organe/PO50810.json new file mode 100644 index 0000000..373b2c7 --- /dev/null +++ b/public/organe/PO50810.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50810", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des C\u00f4tes-du-Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-du-Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-du-Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO50811.json b/public/organe/PO50811.json new file mode 100644 index 0000000..1b0e0d9 --- /dev/null +++ b/public/organe/PO50811.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50811", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des C\u00f4tes-du-Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-du-Nord", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-du-Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO50812.json b/public/organe/PO50812.json new file mode 100644 index 0000000..3929c69 --- /dev/null +++ b/public/organe/PO50812.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50812", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1946-06-11", "dateAgrement": null, "dateFin": "1946-11-27"}, "organeParent": null, "chambre": null, "regime": "Assembl\u00e9es nationales constituantes", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50813.json b/public/organe/PO50813.json new file mode 100644 index 0000000..159b667 --- /dev/null +++ b/public/organe/PO50813.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50813", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50814.json b/public/organe/PO50814.json new file mode 100644 index 0000000..993d05d --- /dev/null +++ b/public/organe/PO50814.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50814", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50816.json b/public/organe/PO50816.json new file mode 100644 index 0000000..89f0d01 --- /dev/null +++ b/public/organe/PO50816.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50816", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50817.json b/public/organe/PO50817.json new file mode 100644 index 0000000..3552279 --- /dev/null +++ b/public/organe/PO50817.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50817", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50818.json b/public/organe/PO50818.json new file mode 100644 index 0000000..34bd275 --- /dev/null +++ b/public/organe/PO50818.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50818", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50819.json b/public/organe/PO50819.json new file mode 100644 index 0000000..541993e --- /dev/null +++ b/public/organe/PO50819.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50819", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50820.json b/public/organe/PO50820.json new file mode 100644 index 0000000..f2ca751 --- /dev/null +++ b/public/organe/PO50820.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50820", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50821.json b/public/organe/PO50821.json new file mode 100644 index 0000000..b36927b --- /dev/null +++ b/public/organe/PO50821.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50821", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50822.json b/public/organe/PO50822.json new file mode 100644 index 0000000..84c9cdf --- /dev/null +++ b/public/organe/PO50822.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50822", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO50823.json b/public/organe/PO50823.json new file mode 100644 index 0000000..b79141b --- /dev/null +++ b/public/organe/PO50823.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50823", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50824.json b/public/organe/PO50824.json new file mode 100644 index 0000000..3f0cad8 --- /dev/null +++ b/public/organe/PO50824.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50824", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50825.json b/public/organe/PO50825.json new file mode 100644 index 0000000..d91466d --- /dev/null +++ b/public/organe/PO50825.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50825", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50826.json b/public/organe/PO50826.json new file mode 100644 index 0000000..17bca30 --- /dev/null +++ b/public/organe/PO50826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50826", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50827.json b/public/organe/PO50827.json new file mode 100644 index 0000000..8f6fd03 --- /dev/null +++ b/public/organe/PO50827.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50827", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50828.json b/public/organe/PO50828.json new file mode 100644 index 0000000..732e356 --- /dev/null +++ b/public/organe/PO50828.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50828", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50829.json b/public/organe/PO50829.json new file mode 100644 index 0000000..6d326cb --- /dev/null +++ b/public/organe/PO50829.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50829", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50830.json b/public/organe/PO50830.json new file mode 100644 index 0000000..a9e10a1 --- /dev/null +++ b/public/organe/PO50830.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50830", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50831.json b/public/organe/PO50831.json new file mode 100644 index 0000000..26d18be --- /dev/null +++ b/public/organe/PO50831.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50831", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50832.json b/public/organe/PO50832.json new file mode 100644 index 0000000..0ee3c06 --- /dev/null +++ b/public/organe/PO50832.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50832", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50833.json b/public/organe/PO50833.json new file mode 100644 index 0000000..fd0cb85 --- /dev/null +++ b/public/organe/PO50833.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50833", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50834.json b/public/organe/PO50834.json new file mode 100644 index 0000000..ef3320f --- /dev/null +++ b/public/organe/PO50834.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50834", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50835.json b/public/organe/PO50835.json new file mode 100644 index 0000000..f506c10 --- /dev/null +++ b/public/organe/PO50835.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50835", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50836.json b/public/organe/PO50836.json new file mode 100644 index 0000000..96137b6 --- /dev/null +++ b/public/organe/PO50836.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50836", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50837.json b/public/organe/PO50837.json new file mode 100644 index 0000000..e09a87f --- /dev/null +++ b/public/organe/PO50837.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50837", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50838.json b/public/organe/PO50838.json new file mode 100644 index 0000000..dd7db24 --- /dev/null +++ b/public/organe/PO50838.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50838", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50839.json b/public/organe/PO50839.json new file mode 100644 index 0000000..7c8720b --- /dev/null +++ b/public/organe/PO50839.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50839", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50840.json b/public/organe/PO50840.json new file mode 100644 index 0000000..19b08ce --- /dev/null +++ b/public/organe/PO50840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50840", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50841.json b/public/organe/PO50841.json new file mode 100644 index 0000000..cdc7cde --- /dev/null +++ b/public/organe/PO50841.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50841", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50842.json b/public/organe/PO50842.json new file mode 100644 index 0000000..c2fef09 --- /dev/null +++ b/public/organe/PO50842.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50842", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50843.json b/public/organe/PO50843.json new file mode 100644 index 0000000..3aa77bb --- /dev/null +++ b/public/organe/PO50843.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50843", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50844.json b/public/organe/PO50844.json new file mode 100644 index 0000000..03a2a45 --- /dev/null +++ b/public/organe/PO50844.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50844", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50845.json b/public/organe/PO50845.json new file mode 100644 index 0000000..2c2b7aa --- /dev/null +++ b/public/organe/PO50845.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50845", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50846.json b/public/organe/PO50846.json new file mode 100644 index 0000000..eaf0f45 --- /dev/null +++ b/public/organe/PO50846.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50846", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50847.json b/public/organe/PO50847.json new file mode 100644 index 0000000..eb15c12 --- /dev/null +++ b/public/organe/PO50847.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50847", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO50848.json b/public/organe/PO50848.json new file mode 100644 index 0000000..ff75860 --- /dev/null +++ b/public/organe/PO50848.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50848", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50849.json b/public/organe/PO50849.json new file mode 100644 index 0000000..a0cce34 --- /dev/null +++ b/public/organe/PO50849.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50849", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50850.json b/public/organe/PO50850.json new file mode 100644 index 0000000..1c002d8 --- /dev/null +++ b/public/organe/PO50850.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50850", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50851.json b/public/organe/PO50851.json new file mode 100644 index 0000000..11be7bd --- /dev/null +++ b/public/organe/PO50851.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50851", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50852.json b/public/organe/PO50852.json new file mode 100644 index 0000000..27a497c --- /dev/null +++ b/public/organe/PO50852.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50852", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50853.json b/public/organe/PO50853.json new file mode 100644 index 0000000..f8adfa6 --- /dev/null +++ b/public/organe/PO50853.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50853", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50854.json b/public/organe/PO50854.json new file mode 100644 index 0000000..8a35a55 --- /dev/null +++ b/public/organe/PO50854.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50854", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50855.json b/public/organe/PO50855.json new file mode 100644 index 0000000..25ec49f --- /dev/null +++ b/public/organe/PO50855.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50855", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50856.json b/public/organe/PO50856.json new file mode 100644 index 0000000..e878021 --- /dev/null +++ b/public/organe/PO50856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50856", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50857.json b/public/organe/PO50857.json new file mode 100644 index 0000000..a427a84 --- /dev/null +++ b/public/organe/PO50857.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50857", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50858.json b/public/organe/PO50858.json new file mode 100644 index 0000000..6e1cf72 --- /dev/null +++ b/public/organe/PO50858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50858", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50859.json b/public/organe/PO50859.json new file mode 100644 index 0000000..93ee945 --- /dev/null +++ b/public/organe/PO50859.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50859", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50860.json b/public/organe/PO50860.json new file mode 100644 index 0000000..9c5b663 --- /dev/null +++ b/public/organe/PO50860.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50860", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50861.json b/public/organe/PO50861.json new file mode 100644 index 0000000..96802b9 --- /dev/null +++ b/public/organe/PO50861.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50861", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50862.json b/public/organe/PO50862.json new file mode 100644 index 0000000..9eeb158 --- /dev/null +++ b/public/organe/PO50862.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50862", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50863.json b/public/organe/PO50863.json new file mode 100644 index 0000000..acdf2c4 --- /dev/null +++ b/public/organe/PO50863.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50863", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50864.json b/public/organe/PO50864.json new file mode 100644 index 0000000..0e874f1 --- /dev/null +++ b/public/organe/PO50864.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50864", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50865.json b/public/organe/PO50865.json new file mode 100644 index 0000000..91fb701 --- /dev/null +++ b/public/organe/PO50865.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50865", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50866.json b/public/organe/PO50866.json new file mode 100644 index 0000000..26d64eb --- /dev/null +++ b/public/organe/PO50866.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50866", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50867.json b/public/organe/PO50867.json new file mode 100644 index 0000000..283e78e --- /dev/null +++ b/public/organe/PO50867.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50867", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50868.json b/public/organe/PO50868.json new file mode 100644 index 0000000..1c71d98 --- /dev/null +++ b/public/organe/PO50868.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50868", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO50869.json b/public/organe/PO50869.json new file mode 100644 index 0000000..2191e53 --- /dev/null +++ b/public/organe/PO50869.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50869", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50870.json b/public/organe/PO50870.json new file mode 100644 index 0000000..cfbd267 --- /dev/null +++ b/public/organe/PO50870.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50870", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50871.json b/public/organe/PO50871.json new file mode 100644 index 0000000..7fad3f9 --- /dev/null +++ b/public/organe/PO50871.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50871", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50872.json b/public/organe/PO50872.json new file mode 100644 index 0000000..4f67903 --- /dev/null +++ b/public/organe/PO50872.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50872", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50873.json b/public/organe/PO50873.json new file mode 100644 index 0000000..b7dc10e --- /dev/null +++ b/public/organe/PO50873.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50873", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50874.json b/public/organe/PO50874.json new file mode 100644 index 0000000..7256a81 --- /dev/null +++ b/public/organe/PO50874.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50874", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50875.json b/public/organe/PO50875.json new file mode 100644 index 0000000..da173bc --- /dev/null +++ b/public/organe/PO50875.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50875", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50877.json b/public/organe/PO50877.json new file mode 100644 index 0000000..572a6ac --- /dev/null +++ b/public/organe/PO50877.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50877", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50878.json b/public/organe/PO50878.json new file mode 100644 index 0000000..873bc7c --- /dev/null +++ b/public/organe/PO50878.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50878", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50879.json b/public/organe/PO50879.json new file mode 100644 index 0000000..d404b66 --- /dev/null +++ b/public/organe/PO50879.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50879", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50880.json b/public/organe/PO50880.json new file mode 100644 index 0000000..6fb16e9 --- /dev/null +++ b/public/organe/PO50880.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50880", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50881.json b/public/organe/PO50881.json new file mode 100644 index 0000000..3e1ec08 --- /dev/null +++ b/public/organe/PO50881.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50881", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50882.json b/public/organe/PO50882.json new file mode 100644 index 0000000..256e452 --- /dev/null +++ b/public/organe/PO50882.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50882", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50883.json b/public/organe/PO50883.json new file mode 100644 index 0000000..1494ca4 --- /dev/null +++ b/public/organe/PO50883.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50883", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50884.json b/public/organe/PO50884.json new file mode 100644 index 0000000..b1373c6 --- /dev/null +++ b/public/organe/PO50884.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50884", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50885.json b/public/organe/PO50885.json new file mode 100644 index 0000000..ff77b2e --- /dev/null +++ b/public/organe/PO50885.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50885", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50886.json b/public/organe/PO50886.json new file mode 100644 index 0000000..eb51035 --- /dev/null +++ b/public/organe/PO50886.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50886", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50887.json b/public/organe/PO50887.json new file mode 100644 index 0000000..8108e95 --- /dev/null +++ b/public/organe/PO50887.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50887", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50888.json b/public/organe/PO50888.json new file mode 100644 index 0000000..c5f29f1 --- /dev/null +++ b/public/organe/PO50888.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50888", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50889.json b/public/organe/PO50889.json new file mode 100644 index 0000000..eea9804 --- /dev/null +++ b/public/organe/PO50889.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50889", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO50890.json b/public/organe/PO50890.json new file mode 100644 index 0000000..be25846 --- /dev/null +++ b/public/organe/PO50890.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50890", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50891.json b/public/organe/PO50891.json new file mode 100644 index 0000000..11848f4 --- /dev/null +++ b/public/organe/PO50891.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50891", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50892.json b/public/organe/PO50892.json new file mode 100644 index 0000000..c9f7ebf --- /dev/null +++ b/public/organe/PO50892.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50892", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50893.json b/public/organe/PO50893.json new file mode 100644 index 0000000..054b5e6 --- /dev/null +++ b/public/organe/PO50893.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50893", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50894.json b/public/organe/PO50894.json new file mode 100644 index 0000000..f532bbf --- /dev/null +++ b/public/organe/PO50894.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50894", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50895.json b/public/organe/PO50895.json new file mode 100644 index 0000000..ba178d1 --- /dev/null +++ b/public/organe/PO50895.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50895", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50896.json b/public/organe/PO50896.json new file mode 100644 index 0000000..f056c39 --- /dev/null +++ b/public/organe/PO50896.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50896", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50897.json b/public/organe/PO50897.json new file mode 100644 index 0000000..6e12606 --- /dev/null +++ b/public/organe/PO50897.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50897", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50898.json b/public/organe/PO50898.json new file mode 100644 index 0000000..287a064 --- /dev/null +++ b/public/organe/PO50898.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50898", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50899.json b/public/organe/PO50899.json new file mode 100644 index 0000000..55e5ee9 --- /dev/null +++ b/public/organe/PO50899.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50899", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50900.json b/public/organe/PO50900.json new file mode 100644 index 0000000..1b0bca6 --- /dev/null +++ b/public/organe/PO50900.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50900", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50901.json b/public/organe/PO50901.json new file mode 100644 index 0000000..433d6ba --- /dev/null +++ b/public/organe/PO50901.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50901", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50902.json b/public/organe/PO50902.json new file mode 100644 index 0000000..42837be --- /dev/null +++ b/public/organe/PO50902.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50902", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50903.json b/public/organe/PO50903.json new file mode 100644 index 0000000..963b7bb --- /dev/null +++ b/public/organe/PO50903.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50903", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50904.json b/public/organe/PO50904.json new file mode 100644 index 0000000..bcd9909 --- /dev/null +++ b/public/organe/PO50904.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50904", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50905.json b/public/organe/PO50905.json new file mode 100644 index 0000000..d27adbe --- /dev/null +++ b/public/organe/PO50905.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50905", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50906.json b/public/organe/PO50906.json new file mode 100644 index 0000000..911fcc4 --- /dev/null +++ b/public/organe/PO50906.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50906", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50907.json b/public/organe/PO50907.json new file mode 100644 index 0000000..593d62b --- /dev/null +++ b/public/organe/PO50907.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50907", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50908.json b/public/organe/PO50908.json new file mode 100644 index 0000000..2c2fcb0 --- /dev/null +++ b/public/organe/PO50908.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50908", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50909.json b/public/organe/PO50909.json new file mode 100644 index 0000000..ba98dd6 --- /dev/null +++ b/public/organe/PO50909.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50909", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50910.json b/public/organe/PO50910.json new file mode 100644 index 0000000..9f9f871 --- /dev/null +++ b/public/organe/PO50910.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50910", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50911.json b/public/organe/PO50911.json new file mode 100644 index 0000000..f18b420 --- /dev/null +++ b/public/organe/PO50911.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50911", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO50912.json b/public/organe/PO50912.json new file mode 100644 index 0000000..71d0333 --- /dev/null +++ b/public/organe/PO50912.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50912", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50913.json b/public/organe/PO50913.json new file mode 100644 index 0000000..88be415 --- /dev/null +++ b/public/organe/PO50913.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50913", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50914.json b/public/organe/PO50914.json new file mode 100644 index 0000000..56740f9 --- /dev/null +++ b/public/organe/PO50914.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50914", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50915.json b/public/organe/PO50915.json new file mode 100644 index 0000000..98959b8 --- /dev/null +++ b/public/organe/PO50915.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50915", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50916.json b/public/organe/PO50916.json new file mode 100644 index 0000000..b8659a3 --- /dev/null +++ b/public/organe/PO50916.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50916", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50917.json b/public/organe/PO50917.json new file mode 100644 index 0000000..092b1e9 --- /dev/null +++ b/public/organe/PO50917.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50917", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50918.json b/public/organe/PO50918.json new file mode 100644 index 0000000..2ee2bd5 --- /dev/null +++ b/public/organe/PO50918.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50918", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50919.json b/public/organe/PO50919.json new file mode 100644 index 0000000..7d84d9a --- /dev/null +++ b/public/organe/PO50919.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50919", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50920.json b/public/organe/PO50920.json new file mode 100644 index 0000000..27ca524 --- /dev/null +++ b/public/organe/PO50920.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50920", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50921.json b/public/organe/PO50921.json new file mode 100644 index 0000000..f0fd703 --- /dev/null +++ b/public/organe/PO50921.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50921", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50922.json b/public/organe/PO50922.json new file mode 100644 index 0000000..c38fa95 --- /dev/null +++ b/public/organe/PO50922.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50922", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50923.json b/public/organe/PO50923.json new file mode 100644 index 0000000..5984bd9 --- /dev/null +++ b/public/organe/PO50923.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50923", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50924.json b/public/organe/PO50924.json new file mode 100644 index 0000000..e00fa95 --- /dev/null +++ b/public/organe/PO50924.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50924", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50925.json b/public/organe/PO50925.json new file mode 100644 index 0000000..b7cd3c7 --- /dev/null +++ b/public/organe/PO50925.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50925", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50926.json b/public/organe/PO50926.json new file mode 100644 index 0000000..352de5d --- /dev/null +++ b/public/organe/PO50926.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50926", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50927.json b/public/organe/PO50927.json new file mode 100644 index 0000000..4dc37d7 --- /dev/null +++ b/public/organe/PO50927.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50927", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50928.json b/public/organe/PO50928.json new file mode 100644 index 0000000..54c8979 --- /dev/null +++ b/public/organe/PO50928.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50928", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50929.json b/public/organe/PO50929.json new file mode 100644 index 0000000..935ebc6 --- /dev/null +++ b/public/organe/PO50929.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50929", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50930.json b/public/organe/PO50930.json new file mode 100644 index 0000000..f06acca --- /dev/null +++ b/public/organe/PO50930.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50930", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50931.json b/public/organe/PO50931.json new file mode 100644 index 0000000..214075f --- /dev/null +++ b/public/organe/PO50931.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50931", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO50932.json b/public/organe/PO50932.json new file mode 100644 index 0000000..c795371 --- /dev/null +++ b/public/organe/PO50932.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50932", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50933.json b/public/organe/PO50933.json new file mode 100644 index 0000000..2dc52bd --- /dev/null +++ b/public/organe/PO50933.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50933", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription n\u00b0 0 du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 0\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "0", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50934.json b/public/organe/PO50934.json new file mode 100644 index 0000000..1c89270 --- /dev/null +++ b/public/organe/PO50934.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50934", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50935.json b/public/organe/PO50935.json new file mode 100644 index 0000000..666780c --- /dev/null +++ b/public/organe/PO50935.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50935", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50936.json b/public/organe/PO50936.json new file mode 100644 index 0000000..5a47645 --- /dev/null +++ b/public/organe/PO50936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50936", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50937.json b/public/organe/PO50937.json new file mode 100644 index 0000000..a978f05 --- /dev/null +++ b/public/organe/PO50937.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50937", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50938.json b/public/organe/PO50938.json new file mode 100644 index 0000000..26626e8 --- /dev/null +++ b/public/organe/PO50938.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50938", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50939.json b/public/organe/PO50939.json new file mode 100644 index 0000000..d2d3849 --- /dev/null +++ b/public/organe/PO50939.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50939", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50940.json b/public/organe/PO50940.json new file mode 100644 index 0000000..67de12a --- /dev/null +++ b/public/organe/PO50940.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50940", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50941.json b/public/organe/PO50941.json new file mode 100644 index 0000000..b220a53 --- /dev/null +++ b/public/organe/PO50941.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50941", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50942.json b/public/organe/PO50942.json new file mode 100644 index 0000000..db7062a --- /dev/null +++ b/public/organe/PO50942.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50942", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50943.json b/public/organe/PO50943.json new file mode 100644 index 0000000..9b8e6a6 --- /dev/null +++ b/public/organe/PO50943.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50943", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50944.json b/public/organe/PO50944.json new file mode 100644 index 0000000..3959f27 --- /dev/null +++ b/public/organe/PO50944.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50944", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50945.json b/public/organe/PO50945.json new file mode 100644 index 0000000..738b39e --- /dev/null +++ b/public/organe/PO50945.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50945", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50946.json b/public/organe/PO50946.json new file mode 100644 index 0000000..3410d08 --- /dev/null +++ b/public/organe/PO50946.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50946", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50947.json b/public/organe/PO50947.json new file mode 100644 index 0000000..bdb02bf --- /dev/null +++ b/public/organe/PO50947.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50947", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50948.json b/public/organe/PO50948.json new file mode 100644 index 0000000..7f7dbfc --- /dev/null +++ b/public/organe/PO50948.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50948", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50949.json b/public/organe/PO50949.json new file mode 100644 index 0000000..8ecb2ae --- /dev/null +++ b/public/organe/PO50949.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50949", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50950.json b/public/organe/PO50950.json new file mode 100644 index 0000000..1576c24 --- /dev/null +++ b/public/organe/PO50950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50950", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50952.json b/public/organe/PO50952.json new file mode 100644 index 0000000..d9dabab --- /dev/null +++ b/public/organe/PO50952.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50952", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50953.json b/public/organe/PO50953.json new file mode 100644 index 0000000..f6f2893 --- /dev/null +++ b/public/organe/PO50953.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50953", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50954.json b/public/organe/PO50954.json new file mode 100644 index 0000000..0bc2cca --- /dev/null +++ b/public/organe/PO50954.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50954", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50955.json b/public/organe/PO50955.json new file mode 100644 index 0000000..47b1773 --- /dev/null +++ b/public/organe/PO50955.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50955", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50956.json b/public/organe/PO50956.json new file mode 100644 index 0000000..cd863fe --- /dev/null +++ b/public/organe/PO50956.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50956", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50957.json b/public/organe/PO50957.json new file mode 100644 index 0000000..78399f9 --- /dev/null +++ b/public/organe/PO50957.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50957", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50958.json b/public/organe/PO50958.json new file mode 100644 index 0000000..8c93c82 --- /dev/null +++ b/public/organe/PO50958.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50958", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50959.json b/public/organe/PO50959.json new file mode 100644 index 0000000..5902368 --- /dev/null +++ b/public/organe/PO50959.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50959", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50960.json b/public/organe/PO50960.json new file mode 100644 index 0000000..8d34f54 --- /dev/null +++ b/public/organe/PO50960.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50960", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50961.json b/public/organe/PO50961.json new file mode 100644 index 0000000..1031208 --- /dev/null +++ b/public/organe/PO50961.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50961", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50962.json b/public/organe/PO50962.json new file mode 100644 index 0000000..66e438e --- /dev/null +++ b/public/organe/PO50962.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50962", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50963.json b/public/organe/PO50963.json new file mode 100644 index 0000000..23d70aa --- /dev/null +++ b/public/organe/PO50963.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50963", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50964.json b/public/organe/PO50964.json new file mode 100644 index 0000000..2e20f3f --- /dev/null +++ b/public/organe/PO50964.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50964", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50965.json b/public/organe/PO50965.json new file mode 100644 index 0000000..e9ea386 --- /dev/null +++ b/public/organe/PO50965.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50965", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50966.json b/public/organe/PO50966.json new file mode 100644 index 0000000..6670147 --- /dev/null +++ b/public/organe/PO50966.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50966", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50967.json b/public/organe/PO50967.json new file mode 100644 index 0000000..de8d79a --- /dev/null +++ b/public/organe/PO50967.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50967", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50968.json b/public/organe/PO50968.json new file mode 100644 index 0000000..d2b9feb --- /dev/null +++ b/public/organe/PO50968.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50968", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50969.json b/public/organe/PO50969.json new file mode 100644 index 0000000..9186757 --- /dev/null +++ b/public/organe/PO50969.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50969", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50970.json b/public/organe/PO50970.json new file mode 100644 index 0000000..a231a2c --- /dev/null +++ b/public/organe/PO50970.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50970", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50971.json b/public/organe/PO50971.json new file mode 100644 index 0000000..03ca93a --- /dev/null +++ b/public/organe/PO50971.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50971", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50972.json b/public/organe/PO50972.json new file mode 100644 index 0000000..3a3d4ab --- /dev/null +++ b/public/organe/PO50972.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50972", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50973.json b/public/organe/PO50973.json new file mode 100644 index 0000000..f23de28 --- /dev/null +++ b/public/organe/PO50973.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50973", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50974.json b/public/organe/PO50974.json new file mode 100644 index 0000000..98b0936 --- /dev/null +++ b/public/organe/PO50974.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50974", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50975.json b/public/organe/PO50975.json new file mode 100644 index 0000000..8bcfa7b --- /dev/null +++ b/public/organe/PO50975.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50975", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50976.json b/public/organe/PO50976.json new file mode 100644 index 0000000..4ca2459 --- /dev/null +++ b/public/organe/PO50976.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50976", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO50977.json b/public/organe/PO50977.json new file mode 100644 index 0000000..882c090 --- /dev/null +++ b/public/organe/PO50977.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50977", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO50978.json b/public/organe/PO50978.json new file mode 100644 index 0000000..e1bf534 --- /dev/null +++ b/public/organe/PO50978.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50978", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO50979.json b/public/organe/PO50979.json new file mode 100644 index 0000000..595c3f1 --- /dev/null +++ b/public/organe/PO50979.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50979", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO50980.json b/public/organe/PO50980.json new file mode 100644 index 0000000..5f61a0d --- /dev/null +++ b/public/organe/PO50980.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50980", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO50981.json b/public/organe/PO50981.json new file mode 100644 index 0000000..7a5979e --- /dev/null +++ b/public/organe/PO50981.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50981", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO50982.json b/public/organe/PO50982.json new file mode 100644 index 0000000..bf90a44 --- /dev/null +++ b/public/organe/PO50982.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50982", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO50983.json b/public/organe/PO50983.json new file mode 100644 index 0000000..384a6f6 --- /dev/null +++ b/public/organe/PO50983.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50983", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO50984.json b/public/organe/PO50984.json new file mode 100644 index 0000000..bba8b0c --- /dev/null +++ b/public/organe/PO50984.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50984", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO50985.json b/public/organe/PO50985.json new file mode 100644 index 0000000..1ec265b --- /dev/null +++ b/public/organe/PO50985.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50985", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO50986.json b/public/organe/PO50986.json new file mode 100644 index 0000000..07ca967 --- /dev/null +++ b/public/organe/PO50986.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50986", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50987.json b/public/organe/PO50987.json new file mode 100644 index 0000000..151e409 --- /dev/null +++ b/public/organe/PO50987.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50987", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50988.json b/public/organe/PO50988.json new file mode 100644 index 0000000..323510d --- /dev/null +++ b/public/organe/PO50988.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50988", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50989.json b/public/organe/PO50989.json new file mode 100644 index 0000000..fbc63cb --- /dev/null +++ b/public/organe/PO50989.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50989", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50990.json b/public/organe/PO50990.json new file mode 100644 index 0000000..aed51cb --- /dev/null +++ b/public/organe/PO50990.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50990", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50991.json b/public/organe/PO50991.json new file mode 100644 index 0000000..bdea954 --- /dev/null +++ b/public/organe/PO50991.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50991", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50992.json b/public/organe/PO50992.json new file mode 100644 index 0000000..e4b8ff2 --- /dev/null +++ b/public/organe/PO50992.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50992", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50993.json b/public/organe/PO50993.json new file mode 100644 index 0000000..b7d081e --- /dev/null +++ b/public/organe/PO50993.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50993", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50994.json b/public/organe/PO50994.json new file mode 100644 index 0000000..c07fb49 --- /dev/null +++ b/public/organe/PO50994.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50994", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO50995.json b/public/organe/PO50995.json new file mode 100644 index 0000000..7c3e7ec --- /dev/null +++ b/public/organe/PO50995.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50995", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO50996.json b/public/organe/PO50996.json new file mode 100644 index 0000000..0d14dcb --- /dev/null +++ b/public/organe/PO50996.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50996", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO50997.json b/public/organe/PO50997.json new file mode 100644 index 0000000..0dda1d0 --- /dev/null +++ b/public/organe/PO50997.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50997", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO50998.json b/public/organe/PO50998.json new file mode 100644 index 0000000..9f729c1 --- /dev/null +++ b/public/organe/PO50998.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50998", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO50999.json b/public/organe/PO50999.json new file mode 100644 index 0000000..ca43dd6 --- /dev/null +++ b/public/organe/PO50999.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO50999", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51000.json b/public/organe/PO51000.json new file mode 100644 index 0000000..f09ffac --- /dev/null +++ b/public/organe/PO51000.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51000", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51001.json b/public/organe/PO51001.json new file mode 100644 index 0000000..6d75dc4 --- /dev/null +++ b/public/organe/PO51001.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51001", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51002.json b/public/organe/PO51002.json new file mode 100644 index 0000000..4d3ba34 --- /dev/null +++ b/public/organe/PO51002.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51002", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51003.json b/public/organe/PO51003.json new file mode 100644 index 0000000..704fdfa --- /dev/null +++ b/public/organe/PO51003.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51003", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51004.json b/public/organe/PO51004.json new file mode 100644 index 0000000..db2f7c8 --- /dev/null +++ b/public/organe/PO51004.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51004", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51005.json b/public/organe/PO51005.json new file mode 100644 index 0000000..89a4854 --- /dev/null +++ b/public/organe/PO51005.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51005", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51006.json b/public/organe/PO51006.json new file mode 100644 index 0000000..5b6cc73 --- /dev/null +++ b/public/organe/PO51006.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51006", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51007.json b/public/organe/PO51007.json new file mode 100644 index 0000000..a866028 --- /dev/null +++ b/public/organe/PO51007.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51007", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51008.json b/public/organe/PO51008.json new file mode 100644 index 0000000..be1cff9 --- /dev/null +++ b/public/organe/PO51008.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51008", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51009.json b/public/organe/PO51009.json new file mode 100644 index 0000000..8f9e568 --- /dev/null +++ b/public/organe/PO51009.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51009", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51010.json b/public/organe/PO51010.json new file mode 100644 index 0000000..6a87bce --- /dev/null +++ b/public/organe/PO51010.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51010", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51011.json b/public/organe/PO51011.json new file mode 100644 index 0000000..ed84111 --- /dev/null +++ b/public/organe/PO51011.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51011", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51012.json b/public/organe/PO51012.json new file mode 100644 index 0000000..763be0c --- /dev/null +++ b/public/organe/PO51012.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51012", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51013.json b/public/organe/PO51013.json new file mode 100644 index 0000000..8cc5dd6 --- /dev/null +++ b/public/organe/PO51013.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51013", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51014.json b/public/organe/PO51014.json new file mode 100644 index 0000000..9f1c975 --- /dev/null +++ b/public/organe/PO51014.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51014", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51015.json b/public/organe/PO51015.json new file mode 100644 index 0000000..0fe4c85 --- /dev/null +++ b/public/organe/PO51015.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51015", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51016.json b/public/organe/PO51016.json new file mode 100644 index 0000000..0f5c80d --- /dev/null +++ b/public/organe/PO51016.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51016", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51017.json b/public/organe/PO51017.json new file mode 100644 index 0000000..339ca36 --- /dev/null +++ b/public/organe/PO51017.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51017", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51018.json b/public/organe/PO51018.json new file mode 100644 index 0000000..c9544fa --- /dev/null +++ b/public/organe/PO51018.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51018", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO51019.json b/public/organe/PO51019.json new file mode 100644 index 0000000..e7e6350 --- /dev/null +++ b/public/organe/PO51019.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51019", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51020.json b/public/organe/PO51020.json new file mode 100644 index 0000000..c26be21 --- /dev/null +++ b/public/organe/PO51020.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51020", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51021.json b/public/organe/PO51021.json new file mode 100644 index 0000000..2b3a090 --- /dev/null +++ b/public/organe/PO51021.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51021", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51022.json b/public/organe/PO51022.json new file mode 100644 index 0000000..c2cb1e0 --- /dev/null +++ b/public/organe/PO51022.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51022", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51023.json b/public/organe/PO51023.json new file mode 100644 index 0000000..ea25d5d --- /dev/null +++ b/public/organe/PO51023.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51023", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51024.json b/public/organe/PO51024.json new file mode 100644 index 0000000..97d43d2 --- /dev/null +++ b/public/organe/PO51024.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51024", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51025.json b/public/organe/PO51025.json new file mode 100644 index 0000000..e9e4134 --- /dev/null +++ b/public/organe/PO51025.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51025", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51026.json b/public/organe/PO51026.json new file mode 100644 index 0000000..1193943 --- /dev/null +++ b/public/organe/PO51026.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51026", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51027.json b/public/organe/PO51027.json new file mode 100644 index 0000000..626cad1 --- /dev/null +++ b/public/organe/PO51027.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51027", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51028.json b/public/organe/PO51028.json new file mode 100644 index 0000000..72025fb --- /dev/null +++ b/public/organe/PO51028.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51028", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51030.json b/public/organe/PO51030.json new file mode 100644 index 0000000..692acef --- /dev/null +++ b/public/organe/PO51030.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51030", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51031.json b/public/organe/PO51031.json new file mode 100644 index 0000000..85c15a5 --- /dev/null +++ b/public/organe/PO51031.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51031", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51032.json b/public/organe/PO51032.json new file mode 100644 index 0000000..ca8456b --- /dev/null +++ b/public/organe/PO51032.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51032", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51033.json b/public/organe/PO51033.json new file mode 100644 index 0000000..b2b02e7 --- /dev/null +++ b/public/organe/PO51033.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51033", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51034.json b/public/organe/PO51034.json new file mode 100644 index 0000000..649e468 --- /dev/null +++ b/public/organe/PO51034.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51034", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51035.json b/public/organe/PO51035.json new file mode 100644 index 0000000..3f30fe3 --- /dev/null +++ b/public/organe/PO51035.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51035", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51036.json b/public/organe/PO51036.json new file mode 100644 index 0000000..f2d5c86 --- /dev/null +++ b/public/organe/PO51036.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51036", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51037.json b/public/organe/PO51037.json new file mode 100644 index 0000000..fed0759 --- /dev/null +++ b/public/organe/PO51037.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51037", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51038.json b/public/organe/PO51038.json new file mode 100644 index 0000000..77744aa --- /dev/null +++ b/public/organe/PO51038.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51038", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51039.json b/public/organe/PO51039.json new file mode 100644 index 0000000..6d08067 --- /dev/null +++ b/public/organe/PO51039.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51039", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51040.json b/public/organe/PO51040.json new file mode 100644 index 0000000..519c7cc --- /dev/null +++ b/public/organe/PO51040.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51040", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51041.json b/public/organe/PO51041.json new file mode 100644 index 0000000..c68a44d --- /dev/null +++ b/public/organe/PO51041.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51041", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51042.json b/public/organe/PO51042.json new file mode 100644 index 0000000..0f2916b --- /dev/null +++ b/public/organe/PO51042.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51042", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51043.json b/public/organe/PO51043.json new file mode 100644 index 0000000..fd0d631 --- /dev/null +++ b/public/organe/PO51043.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51043", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51044.json b/public/organe/PO51044.json new file mode 100644 index 0000000..769da51 --- /dev/null +++ b/public/organe/PO51044.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51044", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51045.json b/public/organe/PO51045.json new file mode 100644 index 0000000..c3f0d06 --- /dev/null +++ b/public/organe/PO51045.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51045", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51046.json b/public/organe/PO51046.json new file mode 100644 index 0000000..6489c34 --- /dev/null +++ b/public/organe/PO51046.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51046", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51047.json b/public/organe/PO51047.json new file mode 100644 index 0000000..9b0d363 --- /dev/null +++ b/public/organe/PO51047.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51047", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51048.json b/public/organe/PO51048.json new file mode 100644 index 0000000..4a1f4dd --- /dev/null +++ b/public/organe/PO51048.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51048", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51049.json b/public/organe/PO51049.json new file mode 100644 index 0000000..ad68a2f --- /dev/null +++ b/public/organe/PO51049.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51049", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51050.json b/public/organe/PO51050.json new file mode 100644 index 0000000..4809158 --- /dev/null +++ b/public/organe/PO51050.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51050", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51051.json b/public/organe/PO51051.json new file mode 100644 index 0000000..436d00a --- /dev/null +++ b/public/organe/PO51051.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51051", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51052.json b/public/organe/PO51052.json new file mode 100644 index 0000000..c2239e5 --- /dev/null +++ b/public/organe/PO51052.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51052", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51053.json b/public/organe/PO51053.json new file mode 100644 index 0000000..42f5e70 --- /dev/null +++ b/public/organe/PO51053.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51053", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51054.json b/public/organe/PO51054.json new file mode 100644 index 0000000..d388ccf --- /dev/null +++ b/public/organe/PO51054.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51054", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51055.json b/public/organe/PO51055.json new file mode 100644 index 0000000..06aac83 --- /dev/null +++ b/public/organe/PO51055.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51055", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51056.json b/public/organe/PO51056.json new file mode 100644 index 0000000..f63ac23 --- /dev/null +++ b/public/organe/PO51056.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51056", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51057.json b/public/organe/PO51057.json new file mode 100644 index 0000000..d00f2ab --- /dev/null +++ b/public/organe/PO51057.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51057", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51058.json b/public/organe/PO51058.json new file mode 100644 index 0000000..907361e --- /dev/null +++ b/public/organe/PO51058.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51058", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51059.json b/public/organe/PO51059.json new file mode 100644 index 0000000..35aeac9 --- /dev/null +++ b/public/organe/PO51059.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51059", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51061.json b/public/organe/PO51061.json new file mode 100644 index 0000000..1acd823 --- /dev/null +++ b/public/organe/PO51061.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51061", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51062.json b/public/organe/PO51062.json new file mode 100644 index 0000000..0335c36 --- /dev/null +++ b/public/organe/PO51062.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51062", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51063.json b/public/organe/PO51063.json new file mode 100644 index 0000000..7b13ecb --- /dev/null +++ b/public/organe/PO51063.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51063", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51064.json b/public/organe/PO51064.json new file mode 100644 index 0000000..c5a8581 --- /dev/null +++ b/public/organe/PO51064.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51064", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51065.json b/public/organe/PO51065.json new file mode 100644 index 0000000..81a4d2e --- /dev/null +++ b/public/organe/PO51065.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51065", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51066.json b/public/organe/PO51066.json new file mode 100644 index 0000000..2f9c4b2 --- /dev/null +++ b/public/organe/PO51066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51066", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51067.json b/public/organe/PO51067.json new file mode 100644 index 0000000..a10d02b --- /dev/null +++ b/public/organe/PO51067.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51067", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51068.json b/public/organe/PO51068.json new file mode 100644 index 0000000..4a9a59a --- /dev/null +++ b/public/organe/PO51068.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51068", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51069.json b/public/organe/PO51069.json new file mode 100644 index 0000000..8a7780c --- /dev/null +++ b/public/organe/PO51069.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51069", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO51070.json b/public/organe/PO51070.json new file mode 100644 index 0000000..d7472cb --- /dev/null +++ b/public/organe/PO51070.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51070", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1946-11-28", "dateAgrement": null, "dateFin": "1951-07-04"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51071.json b/public/organe/PO51071.json new file mode 100644 index 0000000..9f794cd --- /dev/null +++ b/public/organe/PO51071.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51071", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51072.json b/public/organe/PO51072.json new file mode 100644 index 0000000..2c8ad08 --- /dev/null +++ b/public/organe/PO51072.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51072", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51073.json b/public/organe/PO51073.json new file mode 100644 index 0000000..761d507 --- /dev/null +++ b/public/organe/PO51073.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51073", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51074.json b/public/organe/PO51074.json new file mode 100644 index 0000000..4b16464 --- /dev/null +++ b/public/organe/PO51074.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51074", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51075.json b/public/organe/PO51075.json new file mode 100644 index 0000000..0679b2f --- /dev/null +++ b/public/organe/PO51075.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51075", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51076.json b/public/organe/PO51076.json new file mode 100644 index 0000000..8e03521 --- /dev/null +++ b/public/organe/PO51076.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51076", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51077.json b/public/organe/PO51077.json new file mode 100644 index 0000000..fb3c69b --- /dev/null +++ b/public/organe/PO51077.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51077", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51078.json b/public/organe/PO51078.json new file mode 100644 index 0000000..e795846 --- /dev/null +++ b/public/organe/PO51078.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51078", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51079.json b/public/organe/PO51079.json new file mode 100644 index 0000000..f268dbb --- /dev/null +++ b/public/organe/PO51079.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51079", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51080.json b/public/organe/PO51080.json new file mode 100644 index 0000000..542f68b --- /dev/null +++ b/public/organe/PO51080.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51080", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51081.json b/public/organe/PO51081.json new file mode 100644 index 0000000..ee77d92 --- /dev/null +++ b/public/organe/PO51081.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51081", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51082.json b/public/organe/PO51082.json new file mode 100644 index 0000000..1578574 --- /dev/null +++ b/public/organe/PO51082.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51082", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51083.json b/public/organe/PO51083.json new file mode 100644 index 0000000..dcbf780 --- /dev/null +++ b/public/organe/PO51083.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51083", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51084.json b/public/organe/PO51084.json new file mode 100644 index 0000000..bd35510 --- /dev/null +++ b/public/organe/PO51084.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51084", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51085.json b/public/organe/PO51085.json new file mode 100644 index 0000000..8e0696e --- /dev/null +++ b/public/organe/PO51085.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51085", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51086.json b/public/organe/PO51086.json new file mode 100644 index 0000000..b4badb4 --- /dev/null +++ b/public/organe/PO51086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51086", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51087.json b/public/organe/PO51087.json new file mode 100644 index 0000000..e20b05d --- /dev/null +++ b/public/organe/PO51087.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51087", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51088.json b/public/organe/PO51088.json new file mode 100644 index 0000000..41f15eb --- /dev/null +++ b/public/organe/PO51088.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51088", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51089.json b/public/organe/PO51089.json new file mode 100644 index 0000000..808903f --- /dev/null +++ b/public/organe/PO51089.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51089", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51090.json b/public/organe/PO51090.json new file mode 100644 index 0000000..a6e3d8e --- /dev/null +++ b/public/organe/PO51090.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51090", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51091.json b/public/organe/PO51091.json new file mode 100644 index 0000000..5286a49 --- /dev/null +++ b/public/organe/PO51091.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51091", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51092.json b/public/organe/PO51092.json new file mode 100644 index 0000000..7b7f8c3 --- /dev/null +++ b/public/organe/PO51092.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51092", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51093.json b/public/organe/PO51093.json new file mode 100644 index 0000000..30a76f3 --- /dev/null +++ b/public/organe/PO51093.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51093", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51094.json b/public/organe/PO51094.json new file mode 100644 index 0000000..b84c091 --- /dev/null +++ b/public/organe/PO51094.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51094", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51095.json b/public/organe/PO51095.json new file mode 100644 index 0000000..ec1c69b --- /dev/null +++ b/public/organe/PO51095.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51095", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51096.json b/public/organe/PO51096.json new file mode 100644 index 0000000..67ecfe4 --- /dev/null +++ b/public/organe/PO51096.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51096", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51097.json b/public/organe/PO51097.json new file mode 100644 index 0000000..69b4478 --- /dev/null +++ b/public/organe/PO51097.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51097", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51098.json b/public/organe/PO51098.json new file mode 100644 index 0000000..bd5acec --- /dev/null +++ b/public/organe/PO51098.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51098", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51099.json b/public/organe/PO51099.json new file mode 100644 index 0000000..97f2006 --- /dev/null +++ b/public/organe/PO51099.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51099", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51100.json b/public/organe/PO51100.json new file mode 100644 index 0000000..bb0bf52 --- /dev/null +++ b/public/organe/PO51100.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51100", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51101.json b/public/organe/PO51101.json new file mode 100644 index 0000000..4d40a02 --- /dev/null +++ b/public/organe/PO51101.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51101", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51102.json b/public/organe/PO51102.json new file mode 100644 index 0000000..8a3daf5 --- /dev/null +++ b/public/organe/PO51102.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51102", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51103.json b/public/organe/PO51103.json new file mode 100644 index 0000000..b17c6ec --- /dev/null +++ b/public/organe/PO51103.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51103", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51104.json b/public/organe/PO51104.json new file mode 100644 index 0000000..712132d --- /dev/null +++ b/public/organe/PO51104.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51104", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51105.json b/public/organe/PO51105.json new file mode 100644 index 0000000..d71071e --- /dev/null +++ b/public/organe/PO51105.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51105", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51106.json b/public/organe/PO51106.json new file mode 100644 index 0000000..edd87ba --- /dev/null +++ b/public/organe/PO51106.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51106", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51107.json b/public/organe/PO51107.json new file mode 100644 index 0000000..37b94b7 --- /dev/null +++ b/public/organe/PO51107.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51107", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51108.json b/public/organe/PO51108.json new file mode 100644 index 0000000..5500a0b --- /dev/null +++ b/public/organe/PO51108.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51108", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51109.json b/public/organe/PO51109.json new file mode 100644 index 0000000..931be56 --- /dev/null +++ b/public/organe/PO51109.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51109", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51110.json b/public/organe/PO51110.json new file mode 100644 index 0000000..e113da3 --- /dev/null +++ b/public/organe/PO51110.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51110", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51111.json b/public/organe/PO51111.json new file mode 100644 index 0000000..d0811bb --- /dev/null +++ b/public/organe/PO51111.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51111", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51112.json b/public/organe/PO51112.json new file mode 100644 index 0000000..dc056de --- /dev/null +++ b/public/organe/PO51112.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51112", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51113.json b/public/organe/PO51113.json new file mode 100644 index 0000000..33d4985 --- /dev/null +++ b/public/organe/PO51113.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51113", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51114.json b/public/organe/PO51114.json new file mode 100644 index 0000000..a3e200c --- /dev/null +++ b/public/organe/PO51114.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51114", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51115.json b/public/organe/PO51115.json new file mode 100644 index 0000000..8e523a8 --- /dev/null +++ b/public/organe/PO51115.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51115", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51116.json b/public/organe/PO51116.json new file mode 100644 index 0000000..c5debae --- /dev/null +++ b/public/organe/PO51116.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51116", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51117.json b/public/organe/PO51117.json new file mode 100644 index 0000000..11a110b --- /dev/null +++ b/public/organe/PO51117.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51117", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51118.json b/public/organe/PO51118.json new file mode 100644 index 0000000..67a33af --- /dev/null +++ b/public/organe/PO51118.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51118", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51119.json b/public/organe/PO51119.json new file mode 100644 index 0000000..b39233c --- /dev/null +++ b/public/organe/PO51119.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51119", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51120.json b/public/organe/PO51120.json new file mode 100644 index 0000000..fa690ea --- /dev/null +++ b/public/organe/PO51120.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51120", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51121.json b/public/organe/PO51121.json new file mode 100644 index 0000000..10aedb3 --- /dev/null +++ b/public/organe/PO51121.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51121", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51122.json b/public/organe/PO51122.json new file mode 100644 index 0000000..720f0d4 --- /dev/null +++ b/public/organe/PO51122.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51122", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51123.json b/public/organe/PO51123.json new file mode 100644 index 0000000..d920b42 --- /dev/null +++ b/public/organe/PO51123.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51123", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51124.json b/public/organe/PO51124.json new file mode 100644 index 0000000..d09e76a --- /dev/null +++ b/public/organe/PO51124.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51124", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51125.json b/public/organe/PO51125.json new file mode 100644 index 0000000..56d1517 --- /dev/null +++ b/public/organe/PO51125.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51125", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51126.json b/public/organe/PO51126.json new file mode 100644 index 0000000..fd034cc --- /dev/null +++ b/public/organe/PO51126.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51126", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51127.json b/public/organe/PO51127.json new file mode 100644 index 0000000..8379e81 --- /dev/null +++ b/public/organe/PO51127.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51127", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51128.json b/public/organe/PO51128.json new file mode 100644 index 0000000..2ca0bb3 --- /dev/null +++ b/public/organe/PO51128.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51128", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51129.json b/public/organe/PO51129.json new file mode 100644 index 0000000..70178ea --- /dev/null +++ b/public/organe/PO51129.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51129", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51130.json b/public/organe/PO51130.json new file mode 100644 index 0000000..6a521bf --- /dev/null +++ b/public/organe/PO51130.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51130", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51131.json b/public/organe/PO51131.json new file mode 100644 index 0000000..7fbbaa5 --- /dev/null +++ b/public/organe/PO51131.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51131", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51132.json b/public/organe/PO51132.json new file mode 100644 index 0000000..7362f4c --- /dev/null +++ b/public/organe/PO51132.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51132", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51133.json b/public/organe/PO51133.json new file mode 100644 index 0000000..ac8d909 --- /dev/null +++ b/public/organe/PO51133.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51133", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51134.json b/public/organe/PO51134.json new file mode 100644 index 0000000..f51c64b --- /dev/null +++ b/public/organe/PO51134.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51134", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51135.json b/public/organe/PO51135.json new file mode 100644 index 0000000..b703ce8 --- /dev/null +++ b/public/organe/PO51135.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51135", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51136.json b/public/organe/PO51136.json new file mode 100644 index 0000000..2c906c8 --- /dev/null +++ b/public/organe/PO51136.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51136", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51137.json b/public/organe/PO51137.json new file mode 100644 index 0000000..86344d7 --- /dev/null +++ b/public/organe/PO51137.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51137", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51138.json b/public/organe/PO51138.json new file mode 100644 index 0000000..26bdd50 --- /dev/null +++ b/public/organe/PO51138.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51138", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51139.json b/public/organe/PO51139.json new file mode 100644 index 0000000..85c4040 --- /dev/null +++ b/public/organe/PO51139.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51139", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51140.json b/public/organe/PO51140.json new file mode 100644 index 0000000..42f4b7e --- /dev/null +++ b/public/organe/PO51140.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51140", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51141.json b/public/organe/PO51141.json new file mode 100644 index 0000000..a6f7318 --- /dev/null +++ b/public/organe/PO51141.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51141", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO51142.json b/public/organe/PO51142.json new file mode 100644 index 0000000..750b873 --- /dev/null +++ b/public/organe/PO51142.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51142", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51143.json b/public/organe/PO51143.json new file mode 100644 index 0000000..f7ca6c7 --- /dev/null +++ b/public/organe/PO51143.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51143", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51144.json b/public/organe/PO51144.json new file mode 100644 index 0000000..29530f6 --- /dev/null +++ b/public/organe/PO51144.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51144", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51145.json b/public/organe/PO51145.json new file mode 100644 index 0000000..d669217 --- /dev/null +++ b/public/organe/PO51145.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51145", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51146.json b/public/organe/PO51146.json new file mode 100644 index 0000000..582f5bf --- /dev/null +++ b/public/organe/PO51146.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51146", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51147.json b/public/organe/PO51147.json new file mode 100644 index 0000000..4d09d97 --- /dev/null +++ b/public/organe/PO51147.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51147", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51148.json b/public/organe/PO51148.json new file mode 100644 index 0000000..2911a95 --- /dev/null +++ b/public/organe/PO51148.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51148", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51149.json b/public/organe/PO51149.json new file mode 100644 index 0000000..f77ab1a --- /dev/null +++ b/public/organe/PO51149.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51149", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51150.json b/public/organe/PO51150.json new file mode 100644 index 0000000..55828a1 --- /dev/null +++ b/public/organe/PO51150.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51150", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51151.json b/public/organe/PO51151.json new file mode 100644 index 0000000..b1e3916 --- /dev/null +++ b/public/organe/PO51151.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51151", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51152.json b/public/organe/PO51152.json new file mode 100644 index 0000000..d54c520 --- /dev/null +++ b/public/organe/PO51152.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51152", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51153.json b/public/organe/PO51153.json new file mode 100644 index 0000000..9b15495 --- /dev/null +++ b/public/organe/PO51153.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51153", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51154.json b/public/organe/PO51154.json new file mode 100644 index 0000000..bc7db98 --- /dev/null +++ b/public/organe/PO51154.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51154", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51155.json b/public/organe/PO51155.json new file mode 100644 index 0000000..76d2149 --- /dev/null +++ b/public/organe/PO51155.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51155", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51156.json b/public/organe/PO51156.json new file mode 100644 index 0000000..6b8e629 --- /dev/null +++ b/public/organe/PO51156.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51156", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51157.json b/public/organe/PO51157.json new file mode 100644 index 0000000..a01d3b6 --- /dev/null +++ b/public/organe/PO51157.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51157", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51158.json b/public/organe/PO51158.json new file mode 100644 index 0000000..5a827dd --- /dev/null +++ b/public/organe/PO51158.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51158", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51159.json b/public/organe/PO51159.json new file mode 100644 index 0000000..02efd96 --- /dev/null +++ b/public/organe/PO51159.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51159", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51160.json b/public/organe/PO51160.json new file mode 100644 index 0000000..41878aa --- /dev/null +++ b/public/organe/PO51160.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51160", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51161.json b/public/organe/PO51161.json new file mode 100644 index 0000000..2a35bb8 --- /dev/null +++ b/public/organe/PO51161.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51161", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51162.json b/public/organe/PO51162.json new file mode 100644 index 0000000..56ef86d --- /dev/null +++ b/public/organe/PO51162.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51162", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51163.json b/public/organe/PO51163.json new file mode 100644 index 0000000..7858d97 --- /dev/null +++ b/public/organe/PO51163.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51163", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51164.json b/public/organe/PO51164.json new file mode 100644 index 0000000..8abc9e8 --- /dev/null +++ b/public/organe/PO51164.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51164", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51165.json b/public/organe/PO51165.json new file mode 100644 index 0000000..95a501e --- /dev/null +++ b/public/organe/PO51165.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51165", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51166.json b/public/organe/PO51166.json new file mode 100644 index 0000000..b85b815 --- /dev/null +++ b/public/organe/PO51166.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51166", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51167.json b/public/organe/PO51167.json new file mode 100644 index 0000000..b8a43b7 --- /dev/null +++ b/public/organe/PO51167.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51167", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51168.json b/public/organe/PO51168.json new file mode 100644 index 0000000..f354331 --- /dev/null +++ b/public/organe/PO51168.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51168", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51169.json b/public/organe/PO51169.json new file mode 100644 index 0000000..7d8689c --- /dev/null +++ b/public/organe/PO51169.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51169", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51170.json b/public/organe/PO51170.json new file mode 100644 index 0000000..50012f4 --- /dev/null +++ b/public/organe/PO51170.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51170", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO51171.json b/public/organe/PO51171.json new file mode 100644 index 0000000..0e44a2e --- /dev/null +++ b/public/organe/PO51171.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51171", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51172.json b/public/organe/PO51172.json new file mode 100644 index 0000000..534e7c4 --- /dev/null +++ b/public/organe/PO51172.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51172", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51173.json b/public/organe/PO51173.json new file mode 100644 index 0000000..9cd492a --- /dev/null +++ b/public/organe/PO51173.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51173", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51174.json b/public/organe/PO51174.json new file mode 100644 index 0000000..e723e93 --- /dev/null +++ b/public/organe/PO51174.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51174", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51175.json b/public/organe/PO51175.json new file mode 100644 index 0000000..9828c69 --- /dev/null +++ b/public/organe/PO51175.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51175", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51176.json b/public/organe/PO51176.json new file mode 100644 index 0000000..b368c5c --- /dev/null +++ b/public/organe/PO51176.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51176", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51177.json b/public/organe/PO51177.json new file mode 100644 index 0000000..621cbe5 --- /dev/null +++ b/public/organe/PO51177.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51177", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51178.json b/public/organe/PO51178.json new file mode 100644 index 0000000..c9ea98f --- /dev/null +++ b/public/organe/PO51178.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51178", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51179.json b/public/organe/PO51179.json new file mode 100644 index 0000000..ad860bb --- /dev/null +++ b/public/organe/PO51179.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51179", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51180.json b/public/organe/PO51180.json new file mode 100644 index 0000000..a0f484b --- /dev/null +++ b/public/organe/PO51180.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51180", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51181.json b/public/organe/PO51181.json new file mode 100644 index 0000000..8ce0db6 --- /dev/null +++ b/public/organe/PO51181.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51181", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51182.json b/public/organe/PO51182.json new file mode 100644 index 0000000..dd7e1da --- /dev/null +++ b/public/organe/PO51182.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51182", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51183.json b/public/organe/PO51183.json new file mode 100644 index 0000000..6e7fcb7 --- /dev/null +++ b/public/organe/PO51183.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51183", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51184.json b/public/organe/PO51184.json new file mode 100644 index 0000000..278e351 --- /dev/null +++ b/public/organe/PO51184.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51184", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51185.json b/public/organe/PO51185.json new file mode 100644 index 0000000..74f8b24 --- /dev/null +++ b/public/organe/PO51185.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51185", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51186.json b/public/organe/PO51186.json new file mode 100644 index 0000000..a0f86f6 --- /dev/null +++ b/public/organe/PO51186.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51186", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51187.json b/public/organe/PO51187.json new file mode 100644 index 0000000..c300978 --- /dev/null +++ b/public/organe/PO51187.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51187", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51188.json b/public/organe/PO51188.json new file mode 100644 index 0000000..3d568e6 --- /dev/null +++ b/public/organe/PO51188.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51188", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51189.json b/public/organe/PO51189.json new file mode 100644 index 0000000..20da44d --- /dev/null +++ b/public/organe/PO51189.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51189", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51190.json b/public/organe/PO51190.json new file mode 100644 index 0000000..17414b7 --- /dev/null +++ b/public/organe/PO51190.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51190", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51191.json b/public/organe/PO51191.json new file mode 100644 index 0000000..a3858cb --- /dev/null +++ b/public/organe/PO51191.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51191", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51192.json b/public/organe/PO51192.json new file mode 100644 index 0000000..4925494 --- /dev/null +++ b/public/organe/PO51192.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51192", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51193.json b/public/organe/PO51193.json new file mode 100644 index 0000000..4be9aa8 --- /dev/null +++ b/public/organe/PO51193.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51193", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51194.json b/public/organe/PO51194.json new file mode 100644 index 0000000..c93fdad --- /dev/null +++ b/public/organe/PO51194.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51194", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51195.json b/public/organe/PO51195.json new file mode 100644 index 0000000..a068e2e --- /dev/null +++ b/public/organe/PO51195.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51195", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51196.json b/public/organe/PO51196.json new file mode 100644 index 0000000..eee1a88 --- /dev/null +++ b/public/organe/PO51196.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51196", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51197.json b/public/organe/PO51197.json new file mode 100644 index 0000000..d50bdb0 --- /dev/null +++ b/public/organe/PO51197.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51197", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51198.json b/public/organe/PO51198.json new file mode 100644 index 0000000..81b83e7 --- /dev/null +++ b/public/organe/PO51198.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51198", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51199.json b/public/organe/PO51199.json new file mode 100644 index 0000000..be5741c --- /dev/null +++ b/public/organe/PO51199.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51199", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51200.json b/public/organe/PO51200.json new file mode 100644 index 0000000..595d908 --- /dev/null +++ b/public/organe/PO51200.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51200", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51201.json b/public/organe/PO51201.json new file mode 100644 index 0000000..8487739 --- /dev/null +++ b/public/organe/PO51201.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51201", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51202.json b/public/organe/PO51202.json new file mode 100644 index 0000000..0652df3 --- /dev/null +++ b/public/organe/PO51202.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51202", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51203.json b/public/organe/PO51203.json new file mode 100644 index 0000000..b841477 --- /dev/null +++ b/public/organe/PO51203.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51203", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51204.json b/public/organe/PO51204.json new file mode 100644 index 0000000..2cada35 --- /dev/null +++ b/public/organe/PO51204.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51204", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51205.json b/public/organe/PO51205.json new file mode 100644 index 0000000..fc9928c --- /dev/null +++ b/public/organe/PO51205.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51205", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51206.json b/public/organe/PO51206.json new file mode 100644 index 0000000..f2aebc4 --- /dev/null +++ b/public/organe/PO51206.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51206", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51207.json b/public/organe/PO51207.json new file mode 100644 index 0000000..d9b52d8 --- /dev/null +++ b/public/organe/PO51207.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51207", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO51208.json b/public/organe/PO51208.json new file mode 100644 index 0000000..df27ca5 --- /dev/null +++ b/public/organe/PO51208.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51208", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51209.json b/public/organe/PO51209.json new file mode 100644 index 0000000..3119a40 --- /dev/null +++ b/public/organe/PO51209.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51209", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51210.json b/public/organe/PO51210.json new file mode 100644 index 0000000..bfd1616 --- /dev/null +++ b/public/organe/PO51210.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51210", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51211.json b/public/organe/PO51211.json new file mode 100644 index 0000000..fc54b25 --- /dev/null +++ b/public/organe/PO51211.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51211", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51212.json b/public/organe/PO51212.json new file mode 100644 index 0000000..e28eb40 --- /dev/null +++ b/public/organe/PO51212.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51212", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51213.json b/public/organe/PO51213.json new file mode 100644 index 0000000..c860dae --- /dev/null +++ b/public/organe/PO51213.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51213", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51214.json b/public/organe/PO51214.json new file mode 100644 index 0000000..d5fc69c --- /dev/null +++ b/public/organe/PO51214.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51214", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51215.json b/public/organe/PO51215.json new file mode 100644 index 0000000..2d2dbcc --- /dev/null +++ b/public/organe/PO51215.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51215", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51216.json b/public/organe/PO51216.json new file mode 100644 index 0000000..8d83841 --- /dev/null +++ b/public/organe/PO51216.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51216", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51217.json b/public/organe/PO51217.json new file mode 100644 index 0000000..d24c9e9 --- /dev/null +++ b/public/organe/PO51217.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51217", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51218.json b/public/organe/PO51218.json new file mode 100644 index 0000000..9aff1bf --- /dev/null +++ b/public/organe/PO51218.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51218", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51219.json b/public/organe/PO51219.json new file mode 100644 index 0000000..7a69fb1 --- /dev/null +++ b/public/organe/PO51219.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51219", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51220.json b/public/organe/PO51220.json new file mode 100644 index 0000000..bd4dcec --- /dev/null +++ b/public/organe/PO51220.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51220", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51221.json b/public/organe/PO51221.json new file mode 100644 index 0000000..d5a56d8 --- /dev/null +++ b/public/organe/PO51221.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51221", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO51222.json b/public/organe/PO51222.json new file mode 100644 index 0000000..5a78b86 --- /dev/null +++ b/public/organe/PO51222.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51222", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51223.json b/public/organe/PO51223.json new file mode 100644 index 0000000..937e4b2 --- /dev/null +++ b/public/organe/PO51223.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51223", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51224.json b/public/organe/PO51224.json new file mode 100644 index 0000000..07d76cd --- /dev/null +++ b/public/organe/PO51224.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51224", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51225.json b/public/organe/PO51225.json new file mode 100644 index 0000000..088c20a --- /dev/null +++ b/public/organe/PO51225.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51225", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51226.json b/public/organe/PO51226.json new file mode 100644 index 0000000..c7ba6bd --- /dev/null +++ b/public/organe/PO51226.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51226", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51227.json b/public/organe/PO51227.json new file mode 100644 index 0000000..6686ebc --- /dev/null +++ b/public/organe/PO51227.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51227", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51228.json b/public/organe/PO51228.json new file mode 100644 index 0000000..f91e5a7 --- /dev/null +++ b/public/organe/PO51228.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51228", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51229.json b/public/organe/PO51229.json new file mode 100644 index 0000000..094672e --- /dev/null +++ b/public/organe/PO51229.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51229", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51230.json b/public/organe/PO51230.json new file mode 100644 index 0000000..57464c0 --- /dev/null +++ b/public/organe/PO51230.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51230", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51231.json b/public/organe/PO51231.json new file mode 100644 index 0000000..cbd4335 --- /dev/null +++ b/public/organe/PO51231.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51231", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51232.json b/public/organe/PO51232.json new file mode 100644 index 0000000..1fde3a2 --- /dev/null +++ b/public/organe/PO51232.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51232", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51233.json b/public/organe/PO51233.json new file mode 100644 index 0000000..e5bc2c2 --- /dev/null +++ b/public/organe/PO51233.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51233", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51234.json b/public/organe/PO51234.json new file mode 100644 index 0000000..67a0587 --- /dev/null +++ b/public/organe/PO51234.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51234", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51235.json b/public/organe/PO51235.json new file mode 100644 index 0000000..6dff6ab --- /dev/null +++ b/public/organe/PO51235.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51235", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51236.json b/public/organe/PO51236.json new file mode 100644 index 0000000..90ec332 --- /dev/null +++ b/public/organe/PO51236.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51236", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51237.json b/public/organe/PO51237.json new file mode 100644 index 0000000..d4e1405 --- /dev/null +++ b/public/organe/PO51237.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51237", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51238.json b/public/organe/PO51238.json new file mode 100644 index 0000000..a854523 --- /dev/null +++ b/public/organe/PO51238.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51238", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51239.json b/public/organe/PO51239.json new file mode 100644 index 0000000..66fcea1 --- /dev/null +++ b/public/organe/PO51239.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51239", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51240.json b/public/organe/PO51240.json new file mode 100644 index 0000000..4326703 --- /dev/null +++ b/public/organe/PO51240.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51240", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51241.json b/public/organe/PO51241.json new file mode 100644 index 0000000..c69b146 --- /dev/null +++ b/public/organe/PO51241.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51241", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51242.json b/public/organe/PO51242.json new file mode 100644 index 0000000..83d91da --- /dev/null +++ b/public/organe/PO51242.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51242", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51243.json b/public/organe/PO51243.json new file mode 100644 index 0000000..ac99b9d --- /dev/null +++ b/public/organe/PO51243.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51243", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51244.json b/public/organe/PO51244.json new file mode 100644 index 0000000..978822e --- /dev/null +++ b/public/organe/PO51244.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51244", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51245.json b/public/organe/PO51245.json new file mode 100644 index 0000000..aedf4f0 --- /dev/null +++ b/public/organe/PO51245.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51245", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51246.json b/public/organe/PO51246.json new file mode 100644 index 0000000..cee84ae --- /dev/null +++ b/public/organe/PO51246.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51246", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51247.json b/public/organe/PO51247.json new file mode 100644 index 0000000..a345b06 --- /dev/null +++ b/public/organe/PO51247.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51247", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51248.json b/public/organe/PO51248.json new file mode 100644 index 0000000..94cba31 --- /dev/null +++ b/public/organe/PO51248.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51248", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51249.json b/public/organe/PO51249.json new file mode 100644 index 0000000..df83921 --- /dev/null +++ b/public/organe/PO51249.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51249", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51250.json b/public/organe/PO51250.json new file mode 100644 index 0000000..e260f33 --- /dev/null +++ b/public/organe/PO51250.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51250", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51251.json b/public/organe/PO51251.json new file mode 100644 index 0000000..f757f01 --- /dev/null +++ b/public/organe/PO51251.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51251", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51252.json b/public/organe/PO51252.json new file mode 100644 index 0000000..18b3539 --- /dev/null +++ b/public/organe/PO51252.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51252", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51253.json b/public/organe/PO51253.json new file mode 100644 index 0000000..cab401c --- /dev/null +++ b/public/organe/PO51253.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51253", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51254.json b/public/organe/PO51254.json new file mode 100644 index 0000000..07a30ea --- /dev/null +++ b/public/organe/PO51254.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51254", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51255.json b/public/organe/PO51255.json new file mode 100644 index 0000000..87ad095 --- /dev/null +++ b/public/organe/PO51255.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51255", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51256.json b/public/organe/PO51256.json new file mode 100644 index 0000000..674fe76 --- /dev/null +++ b/public/organe/PO51256.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51256", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51257.json b/public/organe/PO51257.json new file mode 100644 index 0000000..e5d9a7b --- /dev/null +++ b/public/organe/PO51257.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51257", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51258.json b/public/organe/PO51258.json new file mode 100644 index 0000000..e9423d9 --- /dev/null +++ b/public/organe/PO51258.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51258", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51259.json b/public/organe/PO51259.json new file mode 100644 index 0000000..78cdc7b --- /dev/null +++ b/public/organe/PO51259.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51259", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51260.json b/public/organe/PO51260.json new file mode 100644 index 0000000..b8cb58e --- /dev/null +++ b/public/organe/PO51260.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51260", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51261.json b/public/organe/PO51261.json new file mode 100644 index 0000000..09ff735 --- /dev/null +++ b/public/organe/PO51261.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51261", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51262.json b/public/organe/PO51262.json new file mode 100644 index 0000000..33e8953 --- /dev/null +++ b/public/organe/PO51262.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51262", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51263.json b/public/organe/PO51263.json new file mode 100644 index 0000000..d67ae7c --- /dev/null +++ b/public/organe/PO51263.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51263", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51264.json b/public/organe/PO51264.json new file mode 100644 index 0000000..7668717 --- /dev/null +++ b/public/organe/PO51264.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51264", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51265.json b/public/organe/PO51265.json new file mode 100644 index 0000000..99a881c --- /dev/null +++ b/public/organe/PO51265.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51265", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51266.json b/public/organe/PO51266.json new file mode 100644 index 0000000..5a6ade1 --- /dev/null +++ b/public/organe/PO51266.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51266", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51267.json b/public/organe/PO51267.json new file mode 100644 index 0000000..ff192fd --- /dev/null +++ b/public/organe/PO51267.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51267", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51268.json b/public/organe/PO51268.json new file mode 100644 index 0000000..80e975d --- /dev/null +++ b/public/organe/PO51268.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51268", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51269.json b/public/organe/PO51269.json new file mode 100644 index 0000000..65f359c --- /dev/null +++ b/public/organe/PO51269.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51269", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51270.json b/public/organe/PO51270.json new file mode 100644 index 0000000..431e99b --- /dev/null +++ b/public/organe/PO51270.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51270", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51271.json b/public/organe/PO51271.json new file mode 100644 index 0000000..c3296fb --- /dev/null +++ b/public/organe/PO51271.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51271", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51272.json b/public/organe/PO51272.json new file mode 100644 index 0000000..c1c9728 --- /dev/null +++ b/public/organe/PO51272.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51272", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51273.json b/public/organe/PO51273.json new file mode 100644 index 0000000..b97926f --- /dev/null +++ b/public/organe/PO51273.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51273", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51274.json b/public/organe/PO51274.json new file mode 100644 index 0000000..bf45529 --- /dev/null +++ b/public/organe/PO51274.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51274", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51275.json b/public/organe/PO51275.json new file mode 100644 index 0000000..cdbbc28 --- /dev/null +++ b/public/organe/PO51275.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51275", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51276.json b/public/organe/PO51276.json new file mode 100644 index 0000000..fecaac5 --- /dev/null +++ b/public/organe/PO51276.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51276", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51277.json b/public/organe/PO51277.json new file mode 100644 index 0000000..2ff8621 --- /dev/null +++ b/public/organe/PO51277.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51277", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51278.json b/public/organe/PO51278.json new file mode 100644 index 0000000..e631e97 --- /dev/null +++ b/public/organe/PO51278.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51278", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51279.json b/public/organe/PO51279.json new file mode 100644 index 0000000..f2834ea --- /dev/null +++ b/public/organe/PO51279.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51279", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51280.json b/public/organe/PO51280.json new file mode 100644 index 0000000..ff381c1 --- /dev/null +++ b/public/organe/PO51280.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51280", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51281.json b/public/organe/PO51281.json new file mode 100644 index 0000000..90425b9 --- /dev/null +++ b/public/organe/PO51281.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51281", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51282.json b/public/organe/PO51282.json new file mode 100644 index 0000000..1e34276 --- /dev/null +++ b/public/organe/PO51282.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51282", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51283.json b/public/organe/PO51283.json new file mode 100644 index 0000000..5574945 --- /dev/null +++ b/public/organe/PO51283.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51283", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51284.json b/public/organe/PO51284.json new file mode 100644 index 0000000..bf5c19f --- /dev/null +++ b/public/organe/PO51284.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51284", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51285.json b/public/organe/PO51285.json new file mode 100644 index 0000000..db0ef02 --- /dev/null +++ b/public/organe/PO51285.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51285", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51286.json b/public/organe/PO51286.json new file mode 100644 index 0000000..929315e --- /dev/null +++ b/public/organe/PO51286.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51286", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51287.json b/public/organe/PO51287.json new file mode 100644 index 0000000..47d6dce --- /dev/null +++ b/public/organe/PO51287.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51287", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51288.json b/public/organe/PO51288.json new file mode 100644 index 0000000..37b27ee --- /dev/null +++ b/public/organe/PO51288.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51288", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51289.json b/public/organe/PO51289.json new file mode 100644 index 0000000..9835181 --- /dev/null +++ b/public/organe/PO51289.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51289", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51290.json b/public/organe/PO51290.json new file mode 100644 index 0000000..0003786 --- /dev/null +++ b/public/organe/PO51290.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51290", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51291.json b/public/organe/PO51291.json new file mode 100644 index 0000000..01f4dcc --- /dev/null +++ b/public/organe/PO51291.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51291", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51292.json b/public/organe/PO51292.json new file mode 100644 index 0000000..854808c --- /dev/null +++ b/public/organe/PO51292.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51292", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51293.json b/public/organe/PO51293.json new file mode 100644 index 0000000..6cae1ae --- /dev/null +++ b/public/organe/PO51293.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51293", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51294.json b/public/organe/PO51294.json new file mode 100644 index 0000000..311f78c --- /dev/null +++ b/public/organe/PO51294.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51294", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51295.json b/public/organe/PO51295.json new file mode 100644 index 0000000..82144b6 --- /dev/null +++ b/public/organe/PO51295.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51295", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51296.json b/public/organe/PO51296.json new file mode 100644 index 0000000..a974e79 --- /dev/null +++ b/public/organe/PO51296.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51296", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51297.json b/public/organe/PO51297.json new file mode 100644 index 0000000..1662338 --- /dev/null +++ b/public/organe/PO51297.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51297", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51298.json b/public/organe/PO51298.json new file mode 100644 index 0000000..0ab67b2 --- /dev/null +++ b/public/organe/PO51298.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51298", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51299.json b/public/organe/PO51299.json new file mode 100644 index 0000000..d609174 --- /dev/null +++ b/public/organe/PO51299.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51299", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO51300.json b/public/organe/PO51300.json new file mode 100644 index 0000000..168c9e0 --- /dev/null +++ b/public/organe/PO51300.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51300", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51301.json b/public/organe/PO51301.json new file mode 100644 index 0000000..b45fd18 --- /dev/null +++ b/public/organe/PO51301.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51301", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51302.json b/public/organe/PO51302.json new file mode 100644 index 0000000..7439ab5 --- /dev/null +++ b/public/organe/PO51302.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51302", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51303.json b/public/organe/PO51303.json new file mode 100644 index 0000000..b4bc9cc --- /dev/null +++ b/public/organe/PO51303.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51303", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51304.json b/public/organe/PO51304.json new file mode 100644 index 0000000..a978b04 --- /dev/null +++ b/public/organe/PO51304.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51304", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51305.json b/public/organe/PO51305.json new file mode 100644 index 0000000..d29d140 --- /dev/null +++ b/public/organe/PO51305.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51305", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51306.json b/public/organe/PO51306.json new file mode 100644 index 0000000..3e5e097 --- /dev/null +++ b/public/organe/PO51306.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51306", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51307.json b/public/organe/PO51307.json new file mode 100644 index 0000000..8e86a2d --- /dev/null +++ b/public/organe/PO51307.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51307", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51308.json b/public/organe/PO51308.json new file mode 100644 index 0000000..5344235 --- /dev/null +++ b/public/organe/PO51308.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51308", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51309.json b/public/organe/PO51309.json new file mode 100644 index 0000000..50db66e --- /dev/null +++ b/public/organe/PO51309.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51309", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51310.json b/public/organe/PO51310.json new file mode 100644 index 0000000..29045a6 --- /dev/null +++ b/public/organe/PO51310.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51310", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51311.json b/public/organe/PO51311.json new file mode 100644 index 0000000..eaca7c5 --- /dev/null +++ b/public/organe/PO51311.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51311", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51312.json b/public/organe/PO51312.json new file mode 100644 index 0000000..323ae04 --- /dev/null +++ b/public/organe/PO51312.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51312", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51313.json b/public/organe/PO51313.json new file mode 100644 index 0000000..9e907be --- /dev/null +++ b/public/organe/PO51313.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51313", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51314.json b/public/organe/PO51314.json new file mode 100644 index 0000000..ed7da01 --- /dev/null +++ b/public/organe/PO51314.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51314", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO51315.json b/public/organe/PO51315.json new file mode 100644 index 0000000..465449e --- /dev/null +++ b/public/organe/PO51315.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51315", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51316.json b/public/organe/PO51316.json new file mode 100644 index 0000000..67e7b66 --- /dev/null +++ b/public/organe/PO51316.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51316", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51317.json b/public/organe/PO51317.json new file mode 100644 index 0000000..9e042d1 --- /dev/null +++ b/public/organe/PO51317.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51317", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51318.json b/public/organe/PO51318.json new file mode 100644 index 0000000..656c4a6 --- /dev/null +++ b/public/organe/PO51318.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51318", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51319.json b/public/organe/PO51319.json new file mode 100644 index 0000000..d54ce6d --- /dev/null +++ b/public/organe/PO51319.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51319", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51320.json b/public/organe/PO51320.json new file mode 100644 index 0000000..4ffd192 --- /dev/null +++ b/public/organe/PO51320.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51320", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51321.json b/public/organe/PO51321.json new file mode 100644 index 0000000..7c9deaa --- /dev/null +++ b/public/organe/PO51321.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51321", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51322.json b/public/organe/PO51322.json new file mode 100644 index 0000000..a6779d1 --- /dev/null +++ b/public/organe/PO51322.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51322", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51323.json b/public/organe/PO51323.json new file mode 100644 index 0000000..efda4e6 --- /dev/null +++ b/public/organe/PO51323.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51323", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51324.json b/public/organe/PO51324.json new file mode 100644 index 0000000..24efc78 --- /dev/null +++ b/public/organe/PO51324.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51324", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51325.json b/public/organe/PO51325.json new file mode 100644 index 0000000..bc670c4 --- /dev/null +++ b/public/organe/PO51325.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51325", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51326.json b/public/organe/PO51326.json new file mode 100644 index 0000000..32cbd94 --- /dev/null +++ b/public/organe/PO51326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51326", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51327.json b/public/organe/PO51327.json new file mode 100644 index 0000000..3db9aa9 --- /dev/null +++ b/public/organe/PO51327.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51327", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51328.json b/public/organe/PO51328.json new file mode 100644 index 0000000..41c6d40 --- /dev/null +++ b/public/organe/PO51328.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51328", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51329.json b/public/organe/PO51329.json new file mode 100644 index 0000000..e26c4e8 --- /dev/null +++ b/public/organe/PO51329.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51329", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51330.json b/public/organe/PO51330.json new file mode 100644 index 0000000..4bca45b --- /dev/null +++ b/public/organe/PO51330.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51330", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51331.json b/public/organe/PO51331.json new file mode 100644 index 0000000..d4c33c8 --- /dev/null +++ b/public/organe/PO51331.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51331", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51332.json b/public/organe/PO51332.json new file mode 100644 index 0000000..26c47dd --- /dev/null +++ b/public/organe/PO51332.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51332", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51333.json b/public/organe/PO51333.json new file mode 100644 index 0000000..1c14371 --- /dev/null +++ b/public/organe/PO51333.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51333", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO51334.json b/public/organe/PO51334.json new file mode 100644 index 0000000..d7748ec --- /dev/null +++ b/public/organe/PO51334.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51334", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51335.json b/public/organe/PO51335.json new file mode 100644 index 0000000..3887db8 --- /dev/null +++ b/public/organe/PO51335.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51335", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51336.json b/public/organe/PO51336.json new file mode 100644 index 0000000..18238c4 --- /dev/null +++ b/public/organe/PO51336.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51336", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51337.json b/public/organe/PO51337.json new file mode 100644 index 0000000..a1a43d5 --- /dev/null +++ b/public/organe/PO51337.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51337", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51338.json b/public/organe/PO51338.json new file mode 100644 index 0000000..1ff3d40 --- /dev/null +++ b/public/organe/PO51338.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51338", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51339.json b/public/organe/PO51339.json new file mode 100644 index 0000000..9200faf --- /dev/null +++ b/public/organe/PO51339.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51339", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51340.json b/public/organe/PO51340.json new file mode 100644 index 0000000..0b169f0 --- /dev/null +++ b/public/organe/PO51340.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51340", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51342.json b/public/organe/PO51342.json new file mode 100644 index 0000000..2224651 --- /dev/null +++ b/public/organe/PO51342.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51342", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51343.json b/public/organe/PO51343.json new file mode 100644 index 0000000..0dcf783 --- /dev/null +++ b/public/organe/PO51343.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51343", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51344.json b/public/organe/PO51344.json new file mode 100644 index 0000000..6b349fc --- /dev/null +++ b/public/organe/PO51344.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51344", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51345.json b/public/organe/PO51345.json new file mode 100644 index 0000000..b172c9d --- /dev/null +++ b/public/organe/PO51345.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51345", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51346.json b/public/organe/PO51346.json new file mode 100644 index 0000000..3bdf789 --- /dev/null +++ b/public/organe/PO51346.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51346", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51347.json b/public/organe/PO51347.json new file mode 100644 index 0000000..240afe7 --- /dev/null +++ b/public/organe/PO51347.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51347", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51348.json b/public/organe/PO51348.json new file mode 100644 index 0000000..1b7b031 --- /dev/null +++ b/public/organe/PO51348.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51348", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51349.json b/public/organe/PO51349.json new file mode 100644 index 0000000..033d5a1 --- /dev/null +++ b/public/organe/PO51349.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51349", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51350.json b/public/organe/PO51350.json new file mode 100644 index 0000000..96685be --- /dev/null +++ b/public/organe/PO51350.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51350", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51351.json b/public/organe/PO51351.json new file mode 100644 index 0000000..daf79db --- /dev/null +++ b/public/organe/PO51351.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51351", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51352.json b/public/organe/PO51352.json new file mode 100644 index 0000000..6550d5e --- /dev/null +++ b/public/organe/PO51352.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51352", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51353.json b/public/organe/PO51353.json new file mode 100644 index 0000000..9007470 --- /dev/null +++ b/public/organe/PO51353.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51353", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51354.json b/public/organe/PO51354.json new file mode 100644 index 0000000..2fef957 --- /dev/null +++ b/public/organe/PO51354.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51354", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51355.json b/public/organe/PO51355.json new file mode 100644 index 0000000..1f315d7 --- /dev/null +++ b/public/organe/PO51355.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51355", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51356.json b/public/organe/PO51356.json new file mode 100644 index 0000000..3be9524 --- /dev/null +++ b/public/organe/PO51356.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51356", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51357.json b/public/organe/PO51357.json new file mode 100644 index 0000000..1bacb72 --- /dev/null +++ b/public/organe/PO51357.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51357", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51358.json b/public/organe/PO51358.json new file mode 100644 index 0000000..94ef27d --- /dev/null +++ b/public/organe/PO51358.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51358", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51359.json b/public/organe/PO51359.json new file mode 100644 index 0000000..91d9a3c --- /dev/null +++ b/public/organe/PO51359.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51359", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51360.json b/public/organe/PO51360.json new file mode 100644 index 0000000..3a91fc7 --- /dev/null +++ b/public/organe/PO51360.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51360", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51361.json b/public/organe/PO51361.json new file mode 100644 index 0000000..6ff88ea --- /dev/null +++ b/public/organe/PO51361.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51361", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51362.json b/public/organe/PO51362.json new file mode 100644 index 0000000..94a153a --- /dev/null +++ b/public/organe/PO51362.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51362", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51363.json b/public/organe/PO51363.json new file mode 100644 index 0000000..c2cdb04 --- /dev/null +++ b/public/organe/PO51363.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51363", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51364.json b/public/organe/PO51364.json new file mode 100644 index 0000000..5b5f361 --- /dev/null +++ b/public/organe/PO51364.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51364", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51365.json b/public/organe/PO51365.json new file mode 100644 index 0000000..c936add --- /dev/null +++ b/public/organe/PO51365.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51365", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51366.json b/public/organe/PO51366.json new file mode 100644 index 0000000..609d827 --- /dev/null +++ b/public/organe/PO51366.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51366", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51367.json b/public/organe/PO51367.json new file mode 100644 index 0000000..1dd9b53 --- /dev/null +++ b/public/organe/PO51367.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51367", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51368.json b/public/organe/PO51368.json new file mode 100644 index 0000000..e15c3ce --- /dev/null +++ b/public/organe/PO51368.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51368", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51369.json b/public/organe/PO51369.json new file mode 100644 index 0000000..4cd0ebd --- /dev/null +++ b/public/organe/PO51369.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51369", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51370.json b/public/organe/PO51370.json new file mode 100644 index 0000000..78aea4c --- /dev/null +++ b/public/organe/PO51370.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51370", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51371.json b/public/organe/PO51371.json new file mode 100644 index 0000000..8f44ca9 --- /dev/null +++ b/public/organe/PO51371.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51371", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51372.json b/public/organe/PO51372.json new file mode 100644 index 0000000..e393de5 --- /dev/null +++ b/public/organe/PO51372.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51372", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51373.json b/public/organe/PO51373.json new file mode 100644 index 0000000..f4bf116 --- /dev/null +++ b/public/organe/PO51373.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51373", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51374.json b/public/organe/PO51374.json new file mode 100644 index 0000000..d8f0031 --- /dev/null +++ b/public/organe/PO51374.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51374", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51375.json b/public/organe/PO51375.json new file mode 100644 index 0000000..a6305a6 --- /dev/null +++ b/public/organe/PO51375.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51375", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51376.json b/public/organe/PO51376.json new file mode 100644 index 0000000..e914d3c --- /dev/null +++ b/public/organe/PO51376.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51376", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51377.json b/public/organe/PO51377.json new file mode 100644 index 0000000..b902021 --- /dev/null +++ b/public/organe/PO51377.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51377", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51378.json b/public/organe/PO51378.json new file mode 100644 index 0000000..735670d --- /dev/null +++ b/public/organe/PO51378.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51378", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51379.json b/public/organe/PO51379.json new file mode 100644 index 0000000..96632f9 --- /dev/null +++ b/public/organe/PO51379.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51379", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51380.json b/public/organe/PO51380.json new file mode 100644 index 0000000..0c03034 --- /dev/null +++ b/public/organe/PO51380.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51380", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51381.json b/public/organe/PO51381.json new file mode 100644 index 0000000..0b6b110 --- /dev/null +++ b/public/organe/PO51381.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51381", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51382.json b/public/organe/PO51382.json new file mode 100644 index 0000000..c6a1ebd --- /dev/null +++ b/public/organe/PO51382.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51382", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51383.json b/public/organe/PO51383.json new file mode 100644 index 0000000..545d62b --- /dev/null +++ b/public/organe/PO51383.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51383", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51384.json b/public/organe/PO51384.json new file mode 100644 index 0000000..abedb9b --- /dev/null +++ b/public/organe/PO51384.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51384", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51385.json b/public/organe/PO51385.json new file mode 100644 index 0000000..f6a51c2 --- /dev/null +++ b/public/organe/PO51385.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51385", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51386.json b/public/organe/PO51386.json new file mode 100644 index 0000000..3972fc3 --- /dev/null +++ b/public/organe/PO51386.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51386", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51387.json b/public/organe/PO51387.json new file mode 100644 index 0000000..dc6cb5d --- /dev/null +++ b/public/organe/PO51387.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51387", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51388.json b/public/organe/PO51388.json new file mode 100644 index 0000000..dc913a9 --- /dev/null +++ b/public/organe/PO51388.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51388", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51389.json b/public/organe/PO51389.json new file mode 100644 index 0000000..a8baa78 --- /dev/null +++ b/public/organe/PO51389.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51389", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51390.json b/public/organe/PO51390.json new file mode 100644 index 0000000..c147e3f --- /dev/null +++ b/public/organe/PO51390.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51390", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51391.json b/public/organe/PO51391.json new file mode 100644 index 0000000..a548a79 --- /dev/null +++ b/public/organe/PO51391.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51391", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51392.json b/public/organe/PO51392.json new file mode 100644 index 0000000..556707b --- /dev/null +++ b/public/organe/PO51392.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51392", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51393.json b/public/organe/PO51393.json new file mode 100644 index 0000000..5acb941 --- /dev/null +++ b/public/organe/PO51393.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51393", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51394.json b/public/organe/PO51394.json new file mode 100644 index 0000000..362c437 --- /dev/null +++ b/public/organe/PO51394.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51394", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51395.json b/public/organe/PO51395.json new file mode 100644 index 0000000..4ed45ac --- /dev/null +++ b/public/organe/PO51395.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51395", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51396.json b/public/organe/PO51396.json new file mode 100644 index 0000000..4f64e12 --- /dev/null +++ b/public/organe/PO51396.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51396", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51397.json b/public/organe/PO51397.json new file mode 100644 index 0000000..9db4be5 --- /dev/null +++ b/public/organe/PO51397.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51397", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51398.json b/public/organe/PO51398.json new file mode 100644 index 0000000..53e88d1 --- /dev/null +++ b/public/organe/PO51398.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51398", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51399.json b/public/organe/PO51399.json new file mode 100644 index 0000000..90ab7a3 --- /dev/null +++ b/public/organe/PO51399.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51399", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51400.json b/public/organe/PO51400.json new file mode 100644 index 0000000..1c3e512 --- /dev/null +++ b/public/organe/PO51400.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51400", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51401.json b/public/organe/PO51401.json new file mode 100644 index 0000000..811c72d --- /dev/null +++ b/public/organe/PO51401.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51401", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51402.json b/public/organe/PO51402.json new file mode 100644 index 0000000..9239169 --- /dev/null +++ b/public/organe/PO51402.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51402", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51403.json b/public/organe/PO51403.json new file mode 100644 index 0000000..c00a415 --- /dev/null +++ b/public/organe/PO51403.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51403", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51405.json b/public/organe/PO51405.json new file mode 100644 index 0000000..30ee6e4 --- /dev/null +++ b/public/organe/PO51405.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51405", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51406.json b/public/organe/PO51406.json new file mode 100644 index 0000000..a520119 --- /dev/null +++ b/public/organe/PO51406.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51406", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51407.json b/public/organe/PO51407.json new file mode 100644 index 0000000..1a2be3d --- /dev/null +++ b/public/organe/PO51407.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51407", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51408.json b/public/organe/PO51408.json new file mode 100644 index 0000000..9d0ce1e --- /dev/null +++ b/public/organe/PO51408.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51408", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51409.json b/public/organe/PO51409.json new file mode 100644 index 0000000..1ac49c9 --- /dev/null +++ b/public/organe/PO51409.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51409", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51410.json b/public/organe/PO51410.json new file mode 100644 index 0000000..1a2c6ee --- /dev/null +++ b/public/organe/PO51410.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51410", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51411.json b/public/organe/PO51411.json new file mode 100644 index 0000000..0b979f9 --- /dev/null +++ b/public/organe/PO51411.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51411", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51412.json b/public/organe/PO51412.json new file mode 100644 index 0000000..94d3015 --- /dev/null +++ b/public/organe/PO51412.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51412", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51413.json b/public/organe/PO51413.json new file mode 100644 index 0000000..c559978 --- /dev/null +++ b/public/organe/PO51413.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51413", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51414.json b/public/organe/PO51414.json new file mode 100644 index 0000000..ab9ebb4 --- /dev/null +++ b/public/organe/PO51414.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51414", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51415.json b/public/organe/PO51415.json new file mode 100644 index 0000000..039fac3 --- /dev/null +++ b/public/organe/PO51415.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51415", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51416.json b/public/organe/PO51416.json new file mode 100644 index 0000000..a3ba01f --- /dev/null +++ b/public/organe/PO51416.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51416", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51417.json b/public/organe/PO51417.json new file mode 100644 index 0000000..b850185 --- /dev/null +++ b/public/organe/PO51417.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51417", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51418.json b/public/organe/PO51418.json new file mode 100644 index 0000000..34b3fc9 --- /dev/null +++ b/public/organe/PO51418.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51418", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51419.json b/public/organe/PO51419.json new file mode 100644 index 0000000..fdab17d --- /dev/null +++ b/public/organe/PO51419.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51419", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51420.json b/public/organe/PO51420.json new file mode 100644 index 0000000..ea6ad7c --- /dev/null +++ b/public/organe/PO51420.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51420", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51421.json b/public/organe/PO51421.json new file mode 100644 index 0000000..691bb3f --- /dev/null +++ b/public/organe/PO51421.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51421", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51422.json b/public/organe/PO51422.json new file mode 100644 index 0000000..0f90b00 --- /dev/null +++ b/public/organe/PO51422.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51422", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51423.json b/public/organe/PO51423.json new file mode 100644 index 0000000..39d521d --- /dev/null +++ b/public/organe/PO51423.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51423", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51424.json b/public/organe/PO51424.json new file mode 100644 index 0000000..c6dd196 --- /dev/null +++ b/public/organe/PO51424.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51424", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51425.json b/public/organe/PO51425.json new file mode 100644 index 0000000..42aeb87 --- /dev/null +++ b/public/organe/PO51425.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51425", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51426.json b/public/organe/PO51426.json new file mode 100644 index 0000000..ac083b2 --- /dev/null +++ b/public/organe/PO51426.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51426", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51427.json b/public/organe/PO51427.json new file mode 100644 index 0000000..e4d7da0 --- /dev/null +++ b/public/organe/PO51427.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51427", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51428.json b/public/organe/PO51428.json new file mode 100644 index 0000000..4e8ad59 --- /dev/null +++ b/public/organe/PO51428.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51428", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51429.json b/public/organe/PO51429.json new file mode 100644 index 0000000..7d9c7fb --- /dev/null +++ b/public/organe/PO51429.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51429", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51430.json b/public/organe/PO51430.json new file mode 100644 index 0000000..99a1b03 --- /dev/null +++ b/public/organe/PO51430.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51430", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51431.json b/public/organe/PO51431.json new file mode 100644 index 0000000..5b67a1a --- /dev/null +++ b/public/organe/PO51431.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51431", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51432.json b/public/organe/PO51432.json new file mode 100644 index 0000000..981ffc3 --- /dev/null +++ b/public/organe/PO51432.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51432", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51433.json b/public/organe/PO51433.json new file mode 100644 index 0000000..4cebc85 --- /dev/null +++ b/public/organe/PO51433.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51433", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51434.json b/public/organe/PO51434.json new file mode 100644 index 0000000..5dcafbe --- /dev/null +++ b/public/organe/PO51434.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51434", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51435.json b/public/organe/PO51435.json new file mode 100644 index 0000000..ffa5563 --- /dev/null +++ b/public/organe/PO51435.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51435", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51436.json b/public/organe/PO51436.json new file mode 100644 index 0000000..b4e286a --- /dev/null +++ b/public/organe/PO51436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51436", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51437.json b/public/organe/PO51437.json new file mode 100644 index 0000000..ed9730c --- /dev/null +++ b/public/organe/PO51437.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51437", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51438.json b/public/organe/PO51438.json new file mode 100644 index 0000000..1bda4de --- /dev/null +++ b/public/organe/PO51438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51438", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51439.json b/public/organe/PO51439.json new file mode 100644 index 0000000..cf64857 --- /dev/null +++ b/public/organe/PO51439.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51439", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51440.json b/public/organe/PO51440.json new file mode 100644 index 0000000..29b4e6c --- /dev/null +++ b/public/organe/PO51440.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51440", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51441.json b/public/organe/PO51441.json new file mode 100644 index 0000000..f21d4cb --- /dev/null +++ b/public/organe/PO51441.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51441", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51442.json b/public/organe/PO51442.json new file mode 100644 index 0000000..f9d09af --- /dev/null +++ b/public/organe/PO51442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51442", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51443.json b/public/organe/PO51443.json new file mode 100644 index 0000000..ee15f00 --- /dev/null +++ b/public/organe/PO51443.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51443", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO51444.json b/public/organe/PO51444.json new file mode 100644 index 0000000..4e11647 --- /dev/null +++ b/public/organe/PO51444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51444", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51445.json b/public/organe/PO51445.json new file mode 100644 index 0000000..591ca12 --- /dev/null +++ b/public/organe/PO51445.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51445", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51446.json b/public/organe/PO51446.json new file mode 100644 index 0000000..9b20665 --- /dev/null +++ b/public/organe/PO51446.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51446", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51447.json b/public/organe/PO51447.json new file mode 100644 index 0000000..b30dfa4 --- /dev/null +++ b/public/organe/PO51447.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51447", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51448.json b/public/organe/PO51448.json new file mode 100644 index 0000000..bae6fab --- /dev/null +++ b/public/organe/PO51448.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51448", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51449.json b/public/organe/PO51449.json new file mode 100644 index 0000000..50dc126 --- /dev/null +++ b/public/organe/PO51449.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51449", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51450.json b/public/organe/PO51450.json new file mode 100644 index 0000000..49ec8bd --- /dev/null +++ b/public/organe/PO51450.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51450", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51451.json b/public/organe/PO51451.json new file mode 100644 index 0000000..2661e86 --- /dev/null +++ b/public/organe/PO51451.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51451", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51452.json b/public/organe/PO51452.json new file mode 100644 index 0000000..c0a52c0 --- /dev/null +++ b/public/organe/PO51452.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51452", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51453.json b/public/organe/PO51453.json new file mode 100644 index 0000000..9191cc5 --- /dev/null +++ b/public/organe/PO51453.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51453", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51454.json b/public/organe/PO51454.json new file mode 100644 index 0000000..428447f --- /dev/null +++ b/public/organe/PO51454.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51454", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51455.json b/public/organe/PO51455.json new file mode 100644 index 0000000..b26d1cf --- /dev/null +++ b/public/organe/PO51455.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51455", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51456.json b/public/organe/PO51456.json new file mode 100644 index 0000000..facad16 --- /dev/null +++ b/public/organe/PO51456.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51456", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51457.json b/public/organe/PO51457.json new file mode 100644 index 0000000..d767621 --- /dev/null +++ b/public/organe/PO51457.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51457", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51458.json b/public/organe/PO51458.json new file mode 100644 index 0000000..36cc0c8 --- /dev/null +++ b/public/organe/PO51458.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51458", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51459.json b/public/organe/PO51459.json new file mode 100644 index 0000000..9e80146 --- /dev/null +++ b/public/organe/PO51459.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51459", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51460.json b/public/organe/PO51460.json new file mode 100644 index 0000000..0b4162d --- /dev/null +++ b/public/organe/PO51460.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51460", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51461.json b/public/organe/PO51461.json new file mode 100644 index 0000000..237e1c6 --- /dev/null +++ b/public/organe/PO51461.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51461", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51462.json b/public/organe/PO51462.json new file mode 100644 index 0000000..4dbf3a7 --- /dev/null +++ b/public/organe/PO51462.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51462", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51463.json b/public/organe/PO51463.json new file mode 100644 index 0000000..7f029c0 --- /dev/null +++ b/public/organe/PO51463.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51463", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51464.json b/public/organe/PO51464.json new file mode 100644 index 0000000..a08c9a9 --- /dev/null +++ b/public/organe/PO51464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51464", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51465.json b/public/organe/PO51465.json new file mode 100644 index 0000000..b91ac2e --- /dev/null +++ b/public/organe/PO51465.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51465", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51466.json b/public/organe/PO51466.json new file mode 100644 index 0000000..015c274 --- /dev/null +++ b/public/organe/PO51466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51466", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51467.json b/public/organe/PO51467.json new file mode 100644 index 0000000..24bb4b9 --- /dev/null +++ b/public/organe/PO51467.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51467", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51468.json b/public/organe/PO51468.json new file mode 100644 index 0000000..5514c98 --- /dev/null +++ b/public/organe/PO51468.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51468", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51469.json b/public/organe/PO51469.json new file mode 100644 index 0000000..a296904 --- /dev/null +++ b/public/organe/PO51469.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51469", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO51470.json b/public/organe/PO51470.json new file mode 100644 index 0000000..296f0de --- /dev/null +++ b/public/organe/PO51470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51470", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51471.json b/public/organe/PO51471.json new file mode 100644 index 0000000..5c16406 --- /dev/null +++ b/public/organe/PO51471.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51471", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51472.json b/public/organe/PO51472.json new file mode 100644 index 0000000..f1af3cb --- /dev/null +++ b/public/organe/PO51472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51472", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51473.json b/public/organe/PO51473.json new file mode 100644 index 0000000..23154a4 --- /dev/null +++ b/public/organe/PO51473.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51473", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51474.json b/public/organe/PO51474.json new file mode 100644 index 0000000..b895d9e --- /dev/null +++ b/public/organe/PO51474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51474", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51475.json b/public/organe/PO51475.json new file mode 100644 index 0000000..eab3bb1 --- /dev/null +++ b/public/organe/PO51475.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51475", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51476.json b/public/organe/PO51476.json new file mode 100644 index 0000000..d156ad8 --- /dev/null +++ b/public/organe/PO51476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51476", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51477.json b/public/organe/PO51477.json new file mode 100644 index 0000000..dd335a4 --- /dev/null +++ b/public/organe/PO51477.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51477", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51478.json b/public/organe/PO51478.json new file mode 100644 index 0000000..c6802b7 --- /dev/null +++ b/public/organe/PO51478.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51478", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51479.json b/public/organe/PO51479.json new file mode 100644 index 0000000..5c60ab5 --- /dev/null +++ b/public/organe/PO51479.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51479", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51480.json b/public/organe/PO51480.json new file mode 100644 index 0000000..8c19e2c --- /dev/null +++ b/public/organe/PO51480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51480", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51481.json b/public/organe/PO51481.json new file mode 100644 index 0000000..869d079 --- /dev/null +++ b/public/organe/PO51481.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51481", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51482.json b/public/organe/PO51482.json new file mode 100644 index 0000000..809fb38 --- /dev/null +++ b/public/organe/PO51482.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51482", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO51483.json b/public/organe/PO51483.json new file mode 100644 index 0000000..7971fd3 --- /dev/null +++ b/public/organe/PO51483.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51483", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51484.json b/public/organe/PO51484.json new file mode 100644 index 0000000..72b2a25 --- /dev/null +++ b/public/organe/PO51484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51484", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51485.json b/public/organe/PO51485.json new file mode 100644 index 0000000..016a11c --- /dev/null +++ b/public/organe/PO51485.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51485", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51486.json b/public/organe/PO51486.json new file mode 100644 index 0000000..2ed8de3 --- /dev/null +++ b/public/organe/PO51486.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51486", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51487.json b/public/organe/PO51487.json new file mode 100644 index 0000000..15e05bf --- /dev/null +++ b/public/organe/PO51487.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51487", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51488.json b/public/organe/PO51488.json new file mode 100644 index 0000000..719a55a --- /dev/null +++ b/public/organe/PO51488.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51488", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51489.json b/public/organe/PO51489.json new file mode 100644 index 0000000..0d3351c --- /dev/null +++ b/public/organe/PO51489.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51489", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51490.json b/public/organe/PO51490.json new file mode 100644 index 0000000..d93df89 --- /dev/null +++ b/public/organe/PO51490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51490", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51491.json b/public/organe/PO51491.json new file mode 100644 index 0000000..7650386 --- /dev/null +++ b/public/organe/PO51491.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51491", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51492.json b/public/organe/PO51492.json new file mode 100644 index 0000000..7673ef4 --- /dev/null +++ b/public/organe/PO51492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51492", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51493.json b/public/organe/PO51493.json new file mode 100644 index 0000000..658e41b --- /dev/null +++ b/public/organe/PO51493.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51493", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51494.json b/public/organe/PO51494.json new file mode 100644 index 0000000..6d4fbd0 --- /dev/null +++ b/public/organe/PO51494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51494", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51495.json b/public/organe/PO51495.json new file mode 100644 index 0000000..1bb95c2 --- /dev/null +++ b/public/organe/PO51495.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51495", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51496.json b/public/organe/PO51496.json new file mode 100644 index 0000000..b60fee2 --- /dev/null +++ b/public/organe/PO51496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51496", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51497.json b/public/organe/PO51497.json new file mode 100644 index 0000000..0367d98 --- /dev/null +++ b/public/organe/PO51497.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51497", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51498.json b/public/organe/PO51498.json new file mode 100644 index 0000000..007d740 --- /dev/null +++ b/public/organe/PO51498.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51498", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO51499.json b/public/organe/PO51499.json new file mode 100644 index 0000000..1a6b3ac --- /dev/null +++ b/public/organe/PO51499.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51499", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51500.json b/public/organe/PO51500.json new file mode 100644 index 0000000..8f31e49 --- /dev/null +++ b/public/organe/PO51500.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51500", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51501.json b/public/organe/PO51501.json new file mode 100644 index 0000000..d2ad6ea --- /dev/null +++ b/public/organe/PO51501.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51501", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51502.json b/public/organe/PO51502.json new file mode 100644 index 0000000..9446185 --- /dev/null +++ b/public/organe/PO51502.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51502", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51503.json b/public/organe/PO51503.json new file mode 100644 index 0000000..eec5b98 --- /dev/null +++ b/public/organe/PO51503.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51503", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51504.json b/public/organe/PO51504.json new file mode 100644 index 0000000..5d9a494 --- /dev/null +++ b/public/organe/PO51504.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51504", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51505.json b/public/organe/PO51505.json new file mode 100644 index 0000000..fb37697 --- /dev/null +++ b/public/organe/PO51505.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51505", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51506.json b/public/organe/PO51506.json new file mode 100644 index 0000000..0cfeb3a --- /dev/null +++ b/public/organe/PO51506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51506", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51507.json b/public/organe/PO51507.json new file mode 100644 index 0000000..c6d1051 --- /dev/null +++ b/public/organe/PO51507.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51507", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51508.json b/public/organe/PO51508.json new file mode 100644 index 0000000..e8fa098 --- /dev/null +++ b/public/organe/PO51508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51508", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51509.json b/public/organe/PO51509.json new file mode 100644 index 0000000..094cde7 --- /dev/null +++ b/public/organe/PO51509.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51509", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51510.json b/public/organe/PO51510.json new file mode 100644 index 0000000..f3a3362 --- /dev/null +++ b/public/organe/PO51510.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51510", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51511.json b/public/organe/PO51511.json new file mode 100644 index 0000000..bcffaf7 --- /dev/null +++ b/public/organe/PO51511.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51511", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51512.json b/public/organe/PO51512.json new file mode 100644 index 0000000..fe376b9 --- /dev/null +++ b/public/organe/PO51512.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51512", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO51513.json b/public/organe/PO51513.json new file mode 100644 index 0000000..2ceace3 --- /dev/null +++ b/public/organe/PO51513.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51513", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51514.json b/public/organe/PO51514.json new file mode 100644 index 0000000..6c71344 --- /dev/null +++ b/public/organe/PO51514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51514", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51515.json b/public/organe/PO51515.json new file mode 100644 index 0000000..cb2fb8c --- /dev/null +++ b/public/organe/PO51515.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51515", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51516.json b/public/organe/PO51516.json new file mode 100644 index 0000000..67ee448 --- /dev/null +++ b/public/organe/PO51516.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51516", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51517.json b/public/organe/PO51517.json new file mode 100644 index 0000000..731fbd3 --- /dev/null +++ b/public/organe/PO51517.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51517", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51518.json b/public/organe/PO51518.json new file mode 100644 index 0000000..909e750 --- /dev/null +++ b/public/organe/PO51518.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51518", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51519.json b/public/organe/PO51519.json new file mode 100644 index 0000000..3202372 --- /dev/null +++ b/public/organe/PO51519.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51519", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51520.json b/public/organe/PO51520.json new file mode 100644 index 0000000..485626e --- /dev/null +++ b/public/organe/PO51520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51520", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51521.json b/public/organe/PO51521.json new file mode 100644 index 0000000..533c6fb --- /dev/null +++ b/public/organe/PO51521.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51521", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51522.json b/public/organe/PO51522.json new file mode 100644 index 0000000..77ea862 --- /dev/null +++ b/public/organe/PO51522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51522", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51523.json b/public/organe/PO51523.json new file mode 100644 index 0000000..01f76cd --- /dev/null +++ b/public/organe/PO51523.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51523", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51524.json b/public/organe/PO51524.json new file mode 100644 index 0000000..a069569 --- /dev/null +++ b/public/organe/PO51524.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51524", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51525.json b/public/organe/PO51525.json new file mode 100644 index 0000000..1989e3e --- /dev/null +++ b/public/organe/PO51525.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51525", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51526.json b/public/organe/PO51526.json new file mode 100644 index 0000000..7eb2fc2 --- /dev/null +++ b/public/organe/PO51526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51526", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51527.json b/public/organe/PO51527.json new file mode 100644 index 0000000..d997066 --- /dev/null +++ b/public/organe/PO51527.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51527", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51528.json b/public/organe/PO51528.json new file mode 100644 index 0000000..8e59a60 --- /dev/null +++ b/public/organe/PO51528.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51528", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51529.json b/public/organe/PO51529.json new file mode 100644 index 0000000..4a1fe5b --- /dev/null +++ b/public/organe/PO51529.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51529", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51530.json b/public/organe/PO51530.json new file mode 100644 index 0000000..bf56998 --- /dev/null +++ b/public/organe/PO51530.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51530", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51531.json b/public/organe/PO51531.json new file mode 100644 index 0000000..3cddf58 --- /dev/null +++ b/public/organe/PO51531.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51531", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51532.json b/public/organe/PO51532.json new file mode 100644 index 0000000..4e4128a --- /dev/null +++ b/public/organe/PO51532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51532", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51533.json b/public/organe/PO51533.json new file mode 100644 index 0000000..de6abd2 --- /dev/null +++ b/public/organe/PO51533.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51533", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51534.json b/public/organe/PO51534.json new file mode 100644 index 0000000..14fe158 --- /dev/null +++ b/public/organe/PO51534.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51534", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51535.json b/public/organe/PO51535.json new file mode 100644 index 0000000..ea61d09 --- /dev/null +++ b/public/organe/PO51535.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51535", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51536.json b/public/organe/PO51536.json new file mode 100644 index 0000000..8f091c8 --- /dev/null +++ b/public/organe/PO51536.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51536", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51537.json b/public/organe/PO51537.json new file mode 100644 index 0000000..a0ca239 --- /dev/null +++ b/public/organe/PO51537.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51537", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51538.json b/public/organe/PO51538.json new file mode 100644 index 0000000..bf75471 --- /dev/null +++ b/public/organe/PO51538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51538", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51539.json b/public/organe/PO51539.json new file mode 100644 index 0000000..058a377 --- /dev/null +++ b/public/organe/PO51539.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51539", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51540.json b/public/organe/PO51540.json new file mode 100644 index 0000000..df1ce1c --- /dev/null +++ b/public/organe/PO51540.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51540", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51541.json b/public/organe/PO51541.json new file mode 100644 index 0000000..9d48064 --- /dev/null +++ b/public/organe/PO51541.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51541", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51542.json b/public/organe/PO51542.json new file mode 100644 index 0000000..5b1e77b --- /dev/null +++ b/public/organe/PO51542.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51542", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51543.json b/public/organe/PO51543.json new file mode 100644 index 0000000..297d79c --- /dev/null +++ b/public/organe/PO51543.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51543", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51544.json b/public/organe/PO51544.json new file mode 100644 index 0000000..7637eec --- /dev/null +++ b/public/organe/PO51544.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51544", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51545.json b/public/organe/PO51545.json new file mode 100644 index 0000000..31e7735 --- /dev/null +++ b/public/organe/PO51545.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51545", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51546.json b/public/organe/PO51546.json new file mode 100644 index 0000000..205fc05 --- /dev/null +++ b/public/organe/PO51546.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51546", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51547.json b/public/organe/PO51547.json new file mode 100644 index 0000000..c36e67e --- /dev/null +++ b/public/organe/PO51547.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51547", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51548.json b/public/organe/PO51548.json new file mode 100644 index 0000000..2caf824 --- /dev/null +++ b/public/organe/PO51548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51548", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51549.json b/public/organe/PO51549.json new file mode 100644 index 0000000..ed04367 --- /dev/null +++ b/public/organe/PO51549.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51549", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51550.json b/public/organe/PO51550.json new file mode 100644 index 0000000..5b1ec61 --- /dev/null +++ b/public/organe/PO51550.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51550", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51551.json b/public/organe/PO51551.json new file mode 100644 index 0000000..d00981b --- /dev/null +++ b/public/organe/PO51551.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51551", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51552.json b/public/organe/PO51552.json new file mode 100644 index 0000000..99906c0 --- /dev/null +++ b/public/organe/PO51552.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51552", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51553.json b/public/organe/PO51553.json new file mode 100644 index 0000000..8cd5b7f --- /dev/null +++ b/public/organe/PO51553.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51553", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51554.json b/public/organe/PO51554.json new file mode 100644 index 0000000..68e273a --- /dev/null +++ b/public/organe/PO51554.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51554", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO51555.json b/public/organe/PO51555.json new file mode 100644 index 0000000..6665164 --- /dev/null +++ b/public/organe/PO51555.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51555", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51556.json b/public/organe/PO51556.json new file mode 100644 index 0000000..e57dc7f --- /dev/null +++ b/public/organe/PO51556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51556", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51557.json b/public/organe/PO51557.json new file mode 100644 index 0000000..a2f116f --- /dev/null +++ b/public/organe/PO51557.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51557", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51558.json b/public/organe/PO51558.json new file mode 100644 index 0000000..f847401 --- /dev/null +++ b/public/organe/PO51558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51558", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51559.json b/public/organe/PO51559.json new file mode 100644 index 0000000..0aa2728 --- /dev/null +++ b/public/organe/PO51559.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51559", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51560.json b/public/organe/PO51560.json new file mode 100644 index 0000000..ce471f3 --- /dev/null +++ b/public/organe/PO51560.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51560", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51561.json b/public/organe/PO51561.json new file mode 100644 index 0000000..40a54b6 --- /dev/null +++ b/public/organe/PO51561.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51561", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51562.json b/public/organe/PO51562.json new file mode 100644 index 0000000..af3739a --- /dev/null +++ b/public/organe/PO51562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51562", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51563.json b/public/organe/PO51563.json new file mode 100644 index 0000000..e8656de --- /dev/null +++ b/public/organe/PO51563.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51563", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51564.json b/public/organe/PO51564.json new file mode 100644 index 0000000..ed9637c --- /dev/null +++ b/public/organe/PO51564.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51564", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51565.json b/public/organe/PO51565.json new file mode 100644 index 0000000..fe0db54 --- /dev/null +++ b/public/organe/PO51565.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51565", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51566.json b/public/organe/PO51566.json new file mode 100644 index 0000000..420a08c --- /dev/null +++ b/public/organe/PO51566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51566", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51567.json b/public/organe/PO51567.json new file mode 100644 index 0000000..d0b67a2 --- /dev/null +++ b/public/organe/PO51567.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51567", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51568.json b/public/organe/PO51568.json new file mode 100644 index 0000000..a216fb6 --- /dev/null +++ b/public/organe/PO51568.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51568", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51569.json b/public/organe/PO51569.json new file mode 100644 index 0000000..01359b6 --- /dev/null +++ b/public/organe/PO51569.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51569", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51570.json b/public/organe/PO51570.json new file mode 100644 index 0000000..2341d10 --- /dev/null +++ b/public/organe/PO51570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51570", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51571.json b/public/organe/PO51571.json new file mode 100644 index 0000000..be18909 --- /dev/null +++ b/public/organe/PO51571.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51571", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51572.json b/public/organe/PO51572.json new file mode 100644 index 0000000..f9b7530 --- /dev/null +++ b/public/organe/PO51572.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51572", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51573.json b/public/organe/PO51573.json new file mode 100644 index 0000000..1214fe5 --- /dev/null +++ b/public/organe/PO51573.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51573", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51574.json b/public/organe/PO51574.json new file mode 100644 index 0000000..aeca3b8 --- /dev/null +++ b/public/organe/PO51574.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51574", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51575.json b/public/organe/PO51575.json new file mode 100644 index 0000000..e20abe2 --- /dev/null +++ b/public/organe/PO51575.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51575", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51576.json b/public/organe/PO51576.json new file mode 100644 index 0000000..fe1623e --- /dev/null +++ b/public/organe/PO51576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51576", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51577.json b/public/organe/PO51577.json new file mode 100644 index 0000000..4f13a59 --- /dev/null +++ b/public/organe/PO51577.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51577", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51578.json b/public/organe/PO51578.json new file mode 100644 index 0000000..d070aa3 --- /dev/null +++ b/public/organe/PO51578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51578", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51579.json b/public/organe/PO51579.json new file mode 100644 index 0000000..1dd4a77 --- /dev/null +++ b/public/organe/PO51579.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51579", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51580.json b/public/organe/PO51580.json new file mode 100644 index 0000000..d3f369a --- /dev/null +++ b/public/organe/PO51580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51580", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51581.json b/public/organe/PO51581.json new file mode 100644 index 0000000..6b69ba6 --- /dev/null +++ b/public/organe/PO51581.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51581", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51582.json b/public/organe/PO51582.json new file mode 100644 index 0000000..17c1e5c --- /dev/null +++ b/public/organe/PO51582.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51582", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51583.json b/public/organe/PO51583.json new file mode 100644 index 0000000..f07c2e5 --- /dev/null +++ b/public/organe/PO51583.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51583", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51584.json b/public/organe/PO51584.json new file mode 100644 index 0000000..c4bbf88 --- /dev/null +++ b/public/organe/PO51584.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51584", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51585.json b/public/organe/PO51585.json new file mode 100644 index 0000000..f3515bf --- /dev/null +++ b/public/organe/PO51585.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51585", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO51586.json b/public/organe/PO51586.json new file mode 100644 index 0000000..4891f6b --- /dev/null +++ b/public/organe/PO51586.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51586", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51587.json b/public/organe/PO51587.json new file mode 100644 index 0000000..a02a6d8 --- /dev/null +++ b/public/organe/PO51587.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51587", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51588.json b/public/organe/PO51588.json new file mode 100644 index 0000000..700e3e7 --- /dev/null +++ b/public/organe/PO51588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51588", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51589.json b/public/organe/PO51589.json new file mode 100644 index 0000000..a704c2d --- /dev/null +++ b/public/organe/PO51589.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51589", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51590.json b/public/organe/PO51590.json new file mode 100644 index 0000000..ebe5c89 --- /dev/null +++ b/public/organe/PO51590.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51590", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51591.json b/public/organe/PO51591.json new file mode 100644 index 0000000..acb7b0e --- /dev/null +++ b/public/organe/PO51591.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51591", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51592.json b/public/organe/PO51592.json new file mode 100644 index 0000000..9602b9d --- /dev/null +++ b/public/organe/PO51592.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51592", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51593.json b/public/organe/PO51593.json new file mode 100644 index 0000000..98a6d30 --- /dev/null +++ b/public/organe/PO51593.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51593", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51594.json b/public/organe/PO51594.json new file mode 100644 index 0000000..301d0a0 --- /dev/null +++ b/public/organe/PO51594.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51594", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51595.json b/public/organe/PO51595.json new file mode 100644 index 0000000..71028f6 --- /dev/null +++ b/public/organe/PO51595.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51595", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51596.json b/public/organe/PO51596.json new file mode 100644 index 0000000..58cd2b5 --- /dev/null +++ b/public/organe/PO51596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51596", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51597.json b/public/organe/PO51597.json new file mode 100644 index 0000000..ff85466 --- /dev/null +++ b/public/organe/PO51597.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51597", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51598.json b/public/organe/PO51598.json new file mode 100644 index 0000000..1030e63 --- /dev/null +++ b/public/organe/PO51598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51598", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51599.json b/public/organe/PO51599.json new file mode 100644 index 0000000..86a5c35 --- /dev/null +++ b/public/organe/PO51599.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51599", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51600.json b/public/organe/PO51600.json new file mode 100644 index 0000000..d3fe31e --- /dev/null +++ b/public/organe/PO51600.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51600", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51601.json b/public/organe/PO51601.json new file mode 100644 index 0000000..4c31b01 --- /dev/null +++ b/public/organe/PO51601.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51601", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51602.json b/public/organe/PO51602.json new file mode 100644 index 0000000..a860a2f --- /dev/null +++ b/public/organe/PO51602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51602", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51603.json b/public/organe/PO51603.json new file mode 100644 index 0000000..1466c63 --- /dev/null +++ b/public/organe/PO51603.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51603", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51604.json b/public/organe/PO51604.json new file mode 100644 index 0000000..a9ff0d1 --- /dev/null +++ b/public/organe/PO51604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51604", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51605.json b/public/organe/PO51605.json new file mode 100644 index 0000000..215f220 --- /dev/null +++ b/public/organe/PO51605.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51605", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51606.json b/public/organe/PO51606.json new file mode 100644 index 0000000..ea390a4 --- /dev/null +++ b/public/organe/PO51606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51606", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51607.json b/public/organe/PO51607.json new file mode 100644 index 0000000..3bdd04c --- /dev/null +++ b/public/organe/PO51607.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51607", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51608.json b/public/organe/PO51608.json new file mode 100644 index 0000000..22c47ac --- /dev/null +++ b/public/organe/PO51608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51608", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51609.json b/public/organe/PO51609.json new file mode 100644 index 0000000..0168044 --- /dev/null +++ b/public/organe/PO51609.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51609", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51610.json b/public/organe/PO51610.json new file mode 100644 index 0000000..d8ff93b --- /dev/null +++ b/public/organe/PO51610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51610", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51611.json b/public/organe/PO51611.json new file mode 100644 index 0000000..c22d688 --- /dev/null +++ b/public/organe/PO51611.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51611", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51612.json b/public/organe/PO51612.json new file mode 100644 index 0000000..b388849 --- /dev/null +++ b/public/organe/PO51612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51612", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51613.json b/public/organe/PO51613.json new file mode 100644 index 0000000..2e4362e --- /dev/null +++ b/public/organe/PO51613.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51613", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51614.json b/public/organe/PO51614.json new file mode 100644 index 0000000..de5b243 --- /dev/null +++ b/public/organe/PO51614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51614", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51615.json b/public/organe/PO51615.json new file mode 100644 index 0000000..ce14861 --- /dev/null +++ b/public/organe/PO51615.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51615", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51616.json b/public/organe/PO51616.json new file mode 100644 index 0000000..1988100 --- /dev/null +++ b/public/organe/PO51616.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51616", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51617.json b/public/organe/PO51617.json new file mode 100644 index 0000000..b27e920 --- /dev/null +++ b/public/organe/PO51617.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51617", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51618.json b/public/organe/PO51618.json new file mode 100644 index 0000000..f38c85c --- /dev/null +++ b/public/organe/PO51618.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51618", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51619.json b/public/organe/PO51619.json new file mode 100644 index 0000000..73e4eec --- /dev/null +++ b/public/organe/PO51619.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51619", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51620.json b/public/organe/PO51620.json new file mode 100644 index 0000000..e5be187 --- /dev/null +++ b/public/organe/PO51620.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51620", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51621.json b/public/organe/PO51621.json new file mode 100644 index 0000000..9c3c9ca --- /dev/null +++ b/public/organe/PO51621.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51621", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51622.json b/public/organe/PO51622.json new file mode 100644 index 0000000..e15e66b --- /dev/null +++ b/public/organe/PO51622.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51622", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51623.json b/public/organe/PO51623.json new file mode 100644 index 0000000..7a30f43 --- /dev/null +++ b/public/organe/PO51623.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51623", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51624.json b/public/organe/PO51624.json new file mode 100644 index 0000000..e814a92 --- /dev/null +++ b/public/organe/PO51624.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51624", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51625.json b/public/organe/PO51625.json new file mode 100644 index 0000000..433910b --- /dev/null +++ b/public/organe/PO51625.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51625", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO51626.json b/public/organe/PO51626.json new file mode 100644 index 0000000..5cf2f1d --- /dev/null +++ b/public/organe/PO51626.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51626", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51627.json b/public/organe/PO51627.json new file mode 100644 index 0000000..bf0d637 --- /dev/null +++ b/public/organe/PO51627.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51627", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51628.json b/public/organe/PO51628.json new file mode 100644 index 0000000..5efaa1d --- /dev/null +++ b/public/organe/PO51628.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51628", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51629.json b/public/organe/PO51629.json new file mode 100644 index 0000000..f7e1d0c --- /dev/null +++ b/public/organe/PO51629.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51629", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51630.json b/public/organe/PO51630.json new file mode 100644 index 0000000..73e43d2 --- /dev/null +++ b/public/organe/PO51630.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51630", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51631.json b/public/organe/PO51631.json new file mode 100644 index 0000000..3f669b1 --- /dev/null +++ b/public/organe/PO51631.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51631", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51632.json b/public/organe/PO51632.json new file mode 100644 index 0000000..ed3cdd6 --- /dev/null +++ b/public/organe/PO51632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51632", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51633.json b/public/organe/PO51633.json new file mode 100644 index 0000000..d2f8522 --- /dev/null +++ b/public/organe/PO51633.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51633", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51634.json b/public/organe/PO51634.json new file mode 100644 index 0000000..05cc207 --- /dev/null +++ b/public/organe/PO51634.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51634", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51635.json b/public/organe/PO51635.json new file mode 100644 index 0000000..6fa76f8 --- /dev/null +++ b/public/organe/PO51635.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51635", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51636.json b/public/organe/PO51636.json new file mode 100644 index 0000000..6d5b205 --- /dev/null +++ b/public/organe/PO51636.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51636", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51637.json b/public/organe/PO51637.json new file mode 100644 index 0000000..2a7cb69 --- /dev/null +++ b/public/organe/PO51637.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51637", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51638.json b/public/organe/PO51638.json new file mode 100644 index 0000000..9b3cb64 --- /dev/null +++ b/public/organe/PO51638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51638", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51639.json b/public/organe/PO51639.json new file mode 100644 index 0000000..71b8a46 --- /dev/null +++ b/public/organe/PO51639.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51639", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51640.json b/public/organe/PO51640.json new file mode 100644 index 0000000..34d6253 --- /dev/null +++ b/public/organe/PO51640.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51640", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51641.json b/public/organe/PO51641.json new file mode 100644 index 0000000..600544e --- /dev/null +++ b/public/organe/PO51641.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51641", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51642.json b/public/organe/PO51642.json new file mode 100644 index 0000000..9057909 --- /dev/null +++ b/public/organe/PO51642.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51642", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51643.json b/public/organe/PO51643.json new file mode 100644 index 0000000..c821a38 --- /dev/null +++ b/public/organe/PO51643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51643", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO51644.json b/public/organe/PO51644.json new file mode 100644 index 0000000..13273e6 --- /dev/null +++ b/public/organe/PO51644.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51644", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51645.json b/public/organe/PO51645.json new file mode 100644 index 0000000..bcc8248 --- /dev/null +++ b/public/organe/PO51645.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51645", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51646.json b/public/organe/PO51646.json new file mode 100644 index 0000000..f11fe71 --- /dev/null +++ b/public/organe/PO51646.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51646", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51647.json b/public/organe/PO51647.json new file mode 100644 index 0000000..4c1981f --- /dev/null +++ b/public/organe/PO51647.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51647", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51648.json b/public/organe/PO51648.json new file mode 100644 index 0000000..3429ef1 --- /dev/null +++ b/public/organe/PO51648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51648", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51649.json b/public/organe/PO51649.json new file mode 100644 index 0000000..3f8e458 --- /dev/null +++ b/public/organe/PO51649.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51649", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51650.json b/public/organe/PO51650.json new file mode 100644 index 0000000..2c09f78 --- /dev/null +++ b/public/organe/PO51650.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51650", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51651.json b/public/organe/PO51651.json new file mode 100644 index 0000000..42b30f8 --- /dev/null +++ b/public/organe/PO51651.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51651", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51652.json b/public/organe/PO51652.json new file mode 100644 index 0000000..28db71a --- /dev/null +++ b/public/organe/PO51652.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51652", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51653.json b/public/organe/PO51653.json new file mode 100644 index 0000000..679196b --- /dev/null +++ b/public/organe/PO51653.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51653", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51654.json b/public/organe/PO51654.json new file mode 100644 index 0000000..2c6675c --- /dev/null +++ b/public/organe/PO51654.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51654", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51655.json b/public/organe/PO51655.json new file mode 100644 index 0000000..b7280dc --- /dev/null +++ b/public/organe/PO51655.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51655", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51656.json b/public/organe/PO51656.json new file mode 100644 index 0000000..e8d46eb --- /dev/null +++ b/public/organe/PO51656.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51656", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51657.json b/public/organe/PO51657.json new file mode 100644 index 0000000..829936f --- /dev/null +++ b/public/organe/PO51657.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51657", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51658.json b/public/organe/PO51658.json new file mode 100644 index 0000000..deca076 --- /dev/null +++ b/public/organe/PO51658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51658", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51659.json b/public/organe/PO51659.json new file mode 100644 index 0000000..fa4919c --- /dev/null +++ b/public/organe/PO51659.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51659", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51660.json b/public/organe/PO51660.json new file mode 100644 index 0000000..bb91b25 --- /dev/null +++ b/public/organe/PO51660.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51660", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51661.json b/public/organe/PO51661.json new file mode 100644 index 0000000..b021566 --- /dev/null +++ b/public/organe/PO51661.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51661", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51662.json b/public/organe/PO51662.json new file mode 100644 index 0000000..c473e85 --- /dev/null +++ b/public/organe/PO51662.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51662", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51663.json b/public/organe/PO51663.json new file mode 100644 index 0000000..242fe02 --- /dev/null +++ b/public/organe/PO51663.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51663", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51664.json b/public/organe/PO51664.json new file mode 100644 index 0000000..5b07109 --- /dev/null +++ b/public/organe/PO51664.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51664", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51665.json b/public/organe/PO51665.json new file mode 100644 index 0000000..42d4971 --- /dev/null +++ b/public/organe/PO51665.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51665", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51666.json b/public/organe/PO51666.json new file mode 100644 index 0000000..9c9d9cc --- /dev/null +++ b/public/organe/PO51666.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51666", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51667.json b/public/organe/PO51667.json new file mode 100644 index 0000000..44461a2 --- /dev/null +++ b/public/organe/PO51667.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51667", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51668.json b/public/organe/PO51668.json new file mode 100644 index 0000000..4c9df98 --- /dev/null +++ b/public/organe/PO51668.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51668", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51669.json b/public/organe/PO51669.json new file mode 100644 index 0000000..999467b --- /dev/null +++ b/public/organe/PO51669.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51669", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51670.json b/public/organe/PO51670.json new file mode 100644 index 0000000..33a106d --- /dev/null +++ b/public/organe/PO51670.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51670", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51671.json b/public/organe/PO51671.json new file mode 100644 index 0000000..6ae6d49 --- /dev/null +++ b/public/organe/PO51671.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51671", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51672.json b/public/organe/PO51672.json new file mode 100644 index 0000000..ec77f4b --- /dev/null +++ b/public/organe/PO51672.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51672", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51673.json b/public/organe/PO51673.json new file mode 100644 index 0000000..c413d03 --- /dev/null +++ b/public/organe/PO51673.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51673", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51674.json b/public/organe/PO51674.json new file mode 100644 index 0000000..5cfe29d --- /dev/null +++ b/public/organe/PO51674.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51674", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51675.json b/public/organe/PO51675.json new file mode 100644 index 0000000..dbf01ba --- /dev/null +++ b/public/organe/PO51675.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51675", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO516753.json b/public/organe/PO516753.json new file mode 100644 index 0000000..165a34b --- /dev/null +++ b/public/organe/PO516753.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO516753", "codeType": "COMSENAT", "libelle": "Commission des affaires \u00e9conomiques", "libelleEdition": "de la commission des affaires \u00e9conomiques", "libelleAbrege": "Affaires \u00e9conomiques", "libelleAbrev": "CAECO", "viMoDe": {"dateDebut": "2012-02-21", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO516754.json b/public/organe/PO516754.json new file mode 100644 index 0000000..382cd43 --- /dev/null +++ b/public/organe/PO516754.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO516754", "codeType": "COMSENAT", "libelle": "Commission de l'am\u00e9nagement du territoire et du d\u00e9veloppement durable", "libelleEdition": "de la commission de l'am\u00e9nagement du territoire et du d\u00e9veloppement durable", "libelleAbrege": "Am\u00e9nagement du territoire et d\u00e9veloppement durable", "libelleAbrev": "CDDCO", "viMoDe": {"dateDebut": "2012-02-21", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO51676.json b/public/organe/PO51676.json new file mode 100644 index 0000000..6791031 --- /dev/null +++ b/public/organe/PO51676.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51676", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51677.json b/public/organe/PO51677.json new file mode 100644 index 0000000..e2ea8e0 --- /dev/null +++ b/public/organe/PO51677.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51677", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51678.json b/public/organe/PO51678.json new file mode 100644 index 0000000..bb9d7e6 --- /dev/null +++ b/public/organe/PO51678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51678", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51679.json b/public/organe/PO51679.json new file mode 100644 index 0000000..06a9525 --- /dev/null +++ b/public/organe/PO51679.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51679", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51680.json b/public/organe/PO51680.json new file mode 100644 index 0000000..381e7c6 --- /dev/null +++ b/public/organe/PO51680.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51680", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51681.json b/public/organe/PO51681.json new file mode 100644 index 0000000..7f54333 --- /dev/null +++ b/public/organe/PO51681.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51681", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51682.json b/public/organe/PO51682.json new file mode 100644 index 0000000..cb511a9 --- /dev/null +++ b/public/organe/PO51682.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51682", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51683.json b/public/organe/PO51683.json new file mode 100644 index 0000000..e8e9b91 --- /dev/null +++ b/public/organe/PO51683.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51683", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51684.json b/public/organe/PO51684.json new file mode 100644 index 0000000..596b612 --- /dev/null +++ b/public/organe/PO51684.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51684", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51685.json b/public/organe/PO51685.json new file mode 100644 index 0000000..e9fc916 --- /dev/null +++ b/public/organe/PO51685.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51685", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51686.json b/public/organe/PO51686.json new file mode 100644 index 0000000..0e6262e --- /dev/null +++ b/public/organe/PO51686.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51686", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO51687.json b/public/organe/PO51687.json new file mode 100644 index 0000000..6a865ba --- /dev/null +++ b/public/organe/PO51687.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51687", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1946-11-28", "dateAgrement": null, "dateFin": "1951-07-04"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51688.json b/public/organe/PO51688.json new file mode 100644 index 0000000..7a3a1da --- /dev/null +++ b/public/organe/PO51688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51688", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51689.json b/public/organe/PO51689.json new file mode 100644 index 0000000..cd6f1be --- /dev/null +++ b/public/organe/PO51689.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51689", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51690.json b/public/organe/PO51690.json new file mode 100644 index 0000000..0bb4644 --- /dev/null +++ b/public/organe/PO51690.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51690", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51691.json b/public/organe/PO51691.json new file mode 100644 index 0000000..e62f7d0 --- /dev/null +++ b/public/organe/PO51691.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51691", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51692.json b/public/organe/PO51692.json new file mode 100644 index 0000000..6b9f5e1 --- /dev/null +++ b/public/organe/PO51692.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51692", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51693.json b/public/organe/PO51693.json new file mode 100644 index 0000000..856dbcf --- /dev/null +++ b/public/organe/PO51693.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51693", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51694.json b/public/organe/PO51694.json new file mode 100644 index 0000000..d9afb61 --- /dev/null +++ b/public/organe/PO51694.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51694", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51695.json b/public/organe/PO51695.json new file mode 100644 index 0000000..f575e8d --- /dev/null +++ b/public/organe/PO51695.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51695", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51696.json b/public/organe/PO51696.json new file mode 100644 index 0000000..91efab9 --- /dev/null +++ b/public/organe/PO51696.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51696", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51697.json b/public/organe/PO51697.json new file mode 100644 index 0000000..bb34fd2 --- /dev/null +++ b/public/organe/PO51697.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51697", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51698.json b/public/organe/PO51698.json new file mode 100644 index 0000000..db8d029 --- /dev/null +++ b/public/organe/PO51698.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51698", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51699.json b/public/organe/PO51699.json new file mode 100644 index 0000000..47cc942 --- /dev/null +++ b/public/organe/PO51699.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51699", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51700.json b/public/organe/PO51700.json new file mode 100644 index 0000000..b135595 --- /dev/null +++ b/public/organe/PO51700.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51700", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51701.json b/public/organe/PO51701.json new file mode 100644 index 0000000..4515723 --- /dev/null +++ b/public/organe/PO51701.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51701", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51702.json b/public/organe/PO51702.json new file mode 100644 index 0000000..f292a37 --- /dev/null +++ b/public/organe/PO51702.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51702", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51703.json b/public/organe/PO51703.json new file mode 100644 index 0000000..0d92233 --- /dev/null +++ b/public/organe/PO51703.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51703", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51704.json b/public/organe/PO51704.json new file mode 100644 index 0000000..c94022b --- /dev/null +++ b/public/organe/PO51704.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51704", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51705.json b/public/organe/PO51705.json new file mode 100644 index 0000000..9914a59 --- /dev/null +++ b/public/organe/PO51705.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51705", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51706.json b/public/organe/PO51706.json new file mode 100644 index 0000000..f044570 --- /dev/null +++ b/public/organe/PO51706.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51706", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51707.json b/public/organe/PO51707.json new file mode 100644 index 0000000..da63294 --- /dev/null +++ b/public/organe/PO51707.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51707", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51708.json b/public/organe/PO51708.json new file mode 100644 index 0000000..6ec9733 --- /dev/null +++ b/public/organe/PO51708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51708", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51709.json b/public/organe/PO51709.json new file mode 100644 index 0000000..195d26c --- /dev/null +++ b/public/organe/PO51709.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51709", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51710.json b/public/organe/PO51710.json new file mode 100644 index 0000000..f94c869 --- /dev/null +++ b/public/organe/PO51710.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51710", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51711.json b/public/organe/PO51711.json new file mode 100644 index 0000000..e8adcf2 --- /dev/null +++ b/public/organe/PO51711.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51711", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51712.json b/public/organe/PO51712.json new file mode 100644 index 0000000..d180a4c --- /dev/null +++ b/public/organe/PO51712.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51712", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51713.json b/public/organe/PO51713.json new file mode 100644 index 0000000..4085416 --- /dev/null +++ b/public/organe/PO51713.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51713", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51714.json b/public/organe/PO51714.json new file mode 100644 index 0000000..0a6691c --- /dev/null +++ b/public/organe/PO51714.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51714", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51715.json b/public/organe/PO51715.json new file mode 100644 index 0000000..46ca14d --- /dev/null +++ b/public/organe/PO51715.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51715", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51716.json b/public/organe/PO51716.json new file mode 100644 index 0000000..6637d92 --- /dev/null +++ b/public/organe/PO51716.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51716", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51717.json b/public/organe/PO51717.json new file mode 100644 index 0000000..a401f4e --- /dev/null +++ b/public/organe/PO51717.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51717", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51718.json b/public/organe/PO51718.json new file mode 100644 index 0000000..3ea3d30 --- /dev/null +++ b/public/organe/PO51718.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51718", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51719.json b/public/organe/PO51719.json new file mode 100644 index 0000000..718afac --- /dev/null +++ b/public/organe/PO51719.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51719", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51720.json b/public/organe/PO51720.json new file mode 100644 index 0000000..7a1f0bd --- /dev/null +++ b/public/organe/PO51720.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51720", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51721.json b/public/organe/PO51721.json new file mode 100644 index 0000000..7838d8b --- /dev/null +++ b/public/organe/PO51721.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51721", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51722.json b/public/organe/PO51722.json new file mode 100644 index 0000000..2e8c359 --- /dev/null +++ b/public/organe/PO51722.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51722", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51723.json b/public/organe/PO51723.json new file mode 100644 index 0000000..8390ed1 --- /dev/null +++ b/public/organe/PO51723.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51723", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51724.json b/public/organe/PO51724.json new file mode 100644 index 0000000..e2a482b --- /dev/null +++ b/public/organe/PO51724.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51724", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO51725.json b/public/organe/PO51725.json new file mode 100644 index 0000000..f18bbe8 --- /dev/null +++ b/public/organe/PO51725.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51725", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1945-11-06", "dateAgrement": null, "dateFin": "1946-06-10"}, "organeParent": null, "chambre": null, "regime": "Assembl\u00e9es nationales constituantes", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51726.json b/public/organe/PO51726.json new file mode 100644 index 0000000..aa5cd76 --- /dev/null +++ b/public/organe/PO51726.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51726", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51727.json b/public/organe/PO51727.json new file mode 100644 index 0000000..d9514c2 --- /dev/null +++ b/public/organe/PO51727.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51727", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51728.json b/public/organe/PO51728.json new file mode 100644 index 0000000..a6c50b9 --- /dev/null +++ b/public/organe/PO51728.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51728", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51729.json b/public/organe/PO51729.json new file mode 100644 index 0000000..82f510e --- /dev/null +++ b/public/organe/PO51729.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51729", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51730.json b/public/organe/PO51730.json new file mode 100644 index 0000000..3c4701c --- /dev/null +++ b/public/organe/PO51730.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51730", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51731.json b/public/organe/PO51731.json new file mode 100644 index 0000000..f1e144c --- /dev/null +++ b/public/organe/PO51731.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51731", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51732.json b/public/organe/PO51732.json new file mode 100644 index 0000000..1374f80 --- /dev/null +++ b/public/organe/PO51732.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51732", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51733.json b/public/organe/PO51733.json new file mode 100644 index 0000000..7c377e1 --- /dev/null +++ b/public/organe/PO51733.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51733", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51734.json b/public/organe/PO51734.json new file mode 100644 index 0000000..19689e2 --- /dev/null +++ b/public/organe/PO51734.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51734", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51735.json b/public/organe/PO51735.json new file mode 100644 index 0000000..d1c4972 --- /dev/null +++ b/public/organe/PO51735.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51735", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51736.json b/public/organe/PO51736.json new file mode 100644 index 0000000..4be2ce8 --- /dev/null +++ b/public/organe/PO51736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51736", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51737.json b/public/organe/PO51737.json new file mode 100644 index 0000000..91ec454 --- /dev/null +++ b/public/organe/PO51737.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51737", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51738.json b/public/organe/PO51738.json new file mode 100644 index 0000000..5b1ac6a --- /dev/null +++ b/public/organe/PO51738.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51738", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51739.json b/public/organe/PO51739.json new file mode 100644 index 0000000..256b5f0 --- /dev/null +++ b/public/organe/PO51739.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51739", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51740.json b/public/organe/PO51740.json new file mode 100644 index 0000000..872a735 --- /dev/null +++ b/public/organe/PO51740.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51740", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51741.json b/public/organe/PO51741.json new file mode 100644 index 0000000..8456c28 --- /dev/null +++ b/public/organe/PO51741.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51741", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51742.json b/public/organe/PO51742.json new file mode 100644 index 0000000..38349bb --- /dev/null +++ b/public/organe/PO51742.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51742", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51743.json b/public/organe/PO51743.json new file mode 100644 index 0000000..7afe86c --- /dev/null +++ b/public/organe/PO51743.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51743", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51744.json b/public/organe/PO51744.json new file mode 100644 index 0000000..57093e3 --- /dev/null +++ b/public/organe/PO51744.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51744", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51745.json b/public/organe/PO51745.json new file mode 100644 index 0000000..cec5542 --- /dev/null +++ b/public/organe/PO51745.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51745", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51746.json b/public/organe/PO51746.json new file mode 100644 index 0000000..1604a29 --- /dev/null +++ b/public/organe/PO51746.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51746", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51747.json b/public/organe/PO51747.json new file mode 100644 index 0000000..920df66 --- /dev/null +++ b/public/organe/PO51747.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51747", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51748.json b/public/organe/PO51748.json new file mode 100644 index 0000000..f6231d9 --- /dev/null +++ b/public/organe/PO51748.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51748", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51749.json b/public/organe/PO51749.json new file mode 100644 index 0000000..df41362 --- /dev/null +++ b/public/organe/PO51749.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51749", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51750.json b/public/organe/PO51750.json new file mode 100644 index 0000000..6923a0e --- /dev/null +++ b/public/organe/PO51750.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51750", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51751.json b/public/organe/PO51751.json new file mode 100644 index 0000000..ee4117e --- /dev/null +++ b/public/organe/PO51751.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51751", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51752.json b/public/organe/PO51752.json new file mode 100644 index 0000000..3d1bc0d --- /dev/null +++ b/public/organe/PO51752.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51752", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51753.json b/public/organe/PO51753.json new file mode 100644 index 0000000..a7be56e --- /dev/null +++ b/public/organe/PO51753.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51753", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51754.json b/public/organe/PO51754.json new file mode 100644 index 0000000..cb39bfa --- /dev/null +++ b/public/organe/PO51754.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51754", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51755.json b/public/organe/PO51755.json new file mode 100644 index 0000000..f536747 --- /dev/null +++ b/public/organe/PO51755.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51755", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51756.json b/public/organe/PO51756.json new file mode 100644 index 0000000..bb09bee --- /dev/null +++ b/public/organe/PO51756.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51756", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51757.json b/public/organe/PO51757.json new file mode 100644 index 0000000..2c2f03e --- /dev/null +++ b/public/organe/PO51757.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51757", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51758.json b/public/organe/PO51758.json new file mode 100644 index 0000000..db13971 --- /dev/null +++ b/public/organe/PO51758.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51758", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51759.json b/public/organe/PO51759.json new file mode 100644 index 0000000..32c0da6 --- /dev/null +++ b/public/organe/PO51759.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51759", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51760.json b/public/organe/PO51760.json new file mode 100644 index 0000000..2f84965 --- /dev/null +++ b/public/organe/PO51760.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51760", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51761.json b/public/organe/PO51761.json new file mode 100644 index 0000000..a13bfe7 --- /dev/null +++ b/public/organe/PO51761.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51761", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51762.json b/public/organe/PO51762.json new file mode 100644 index 0000000..5051484 --- /dev/null +++ b/public/organe/PO51762.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51762", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51763.json b/public/organe/PO51763.json new file mode 100644 index 0000000..c20d5a7 --- /dev/null +++ b/public/organe/PO51763.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51763", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51764.json b/public/organe/PO51764.json new file mode 100644 index 0000000..35bb128 --- /dev/null +++ b/public/organe/PO51764.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51764", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51765.json b/public/organe/PO51765.json new file mode 100644 index 0000000..fda2cac --- /dev/null +++ b/public/organe/PO51765.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51765", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51766.json b/public/organe/PO51766.json new file mode 100644 index 0000000..281da7f --- /dev/null +++ b/public/organe/PO51766.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51766", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51767.json b/public/organe/PO51767.json new file mode 100644 index 0000000..8b8c598 --- /dev/null +++ b/public/organe/PO51767.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51767", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51768.json b/public/organe/PO51768.json new file mode 100644 index 0000000..3278843 --- /dev/null +++ b/public/organe/PO51768.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51768", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51769.json b/public/organe/PO51769.json new file mode 100644 index 0000000..ca749b8 --- /dev/null +++ b/public/organe/PO51769.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51769", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51770.json b/public/organe/PO51770.json new file mode 100644 index 0000000..f0c5e6a --- /dev/null +++ b/public/organe/PO51770.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51770", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51771.json b/public/organe/PO51771.json new file mode 100644 index 0000000..8f5b272 --- /dev/null +++ b/public/organe/PO51771.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51771", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51772.json b/public/organe/PO51772.json new file mode 100644 index 0000000..193fec1 --- /dev/null +++ b/public/organe/PO51772.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51772", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51773.json b/public/organe/PO51773.json new file mode 100644 index 0000000..e5e36fa --- /dev/null +++ b/public/organe/PO51773.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51773", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51774.json b/public/organe/PO51774.json new file mode 100644 index 0000000..7345b68 --- /dev/null +++ b/public/organe/PO51774.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51774", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO51775.json b/public/organe/PO51775.json new file mode 100644 index 0000000..f9a43ff --- /dev/null +++ b/public/organe/PO51775.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51775", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51776.json b/public/organe/PO51776.json new file mode 100644 index 0000000..a6070c9 --- /dev/null +++ b/public/organe/PO51776.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51776", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51777.json b/public/organe/PO51777.json new file mode 100644 index 0000000..4658ef0 --- /dev/null +++ b/public/organe/PO51777.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51777", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51778.json b/public/organe/PO51778.json new file mode 100644 index 0000000..84756da --- /dev/null +++ b/public/organe/PO51778.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51778", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51779.json b/public/organe/PO51779.json new file mode 100644 index 0000000..d15eb35 --- /dev/null +++ b/public/organe/PO51779.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51779", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51780.json b/public/organe/PO51780.json new file mode 100644 index 0000000..e20df05 --- /dev/null +++ b/public/organe/PO51780.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51780", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51781.json b/public/organe/PO51781.json new file mode 100644 index 0000000..5e29099 --- /dev/null +++ b/public/organe/PO51781.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51781", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51782.json b/public/organe/PO51782.json new file mode 100644 index 0000000..1b883b1 --- /dev/null +++ b/public/organe/PO51782.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51782", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51783.json b/public/organe/PO51783.json new file mode 100644 index 0000000..d629d9f --- /dev/null +++ b/public/organe/PO51783.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51783", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51784.json b/public/organe/PO51784.json new file mode 100644 index 0000000..70f2ad0 --- /dev/null +++ b/public/organe/PO51784.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51784", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51785.json b/public/organe/PO51785.json new file mode 100644 index 0000000..55d6032 --- /dev/null +++ b/public/organe/PO51785.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51785", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51786.json b/public/organe/PO51786.json new file mode 100644 index 0000000..b3d31a4 --- /dev/null +++ b/public/organe/PO51786.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51786", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51787.json b/public/organe/PO51787.json new file mode 100644 index 0000000..4c07c91 --- /dev/null +++ b/public/organe/PO51787.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51787", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51788.json b/public/organe/PO51788.json new file mode 100644 index 0000000..fa4cddf --- /dev/null +++ b/public/organe/PO51788.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51788", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51789.json b/public/organe/PO51789.json new file mode 100644 index 0000000..420d74a --- /dev/null +++ b/public/organe/PO51789.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51789", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO51790.json b/public/organe/PO51790.json new file mode 100644 index 0000000..89237fe --- /dev/null +++ b/public/organe/PO51790.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51790", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51793.json b/public/organe/PO51793.json new file mode 100644 index 0000000..0c65bf4 --- /dev/null +++ b/public/organe/PO51793.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51793", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51794.json b/public/organe/PO51794.json new file mode 100644 index 0000000..fbdf2c0 --- /dev/null +++ b/public/organe/PO51794.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51794", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51795.json b/public/organe/PO51795.json new file mode 100644 index 0000000..60a4c28 --- /dev/null +++ b/public/organe/PO51795.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51795", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51796.json b/public/organe/PO51796.json new file mode 100644 index 0000000..225029b --- /dev/null +++ b/public/organe/PO51796.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51796", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51797.json b/public/organe/PO51797.json new file mode 100644 index 0000000..320def1 --- /dev/null +++ b/public/organe/PO51797.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51797", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51798.json b/public/organe/PO51798.json new file mode 100644 index 0000000..24a7a2d --- /dev/null +++ b/public/organe/PO51798.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51798", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51799.json b/public/organe/PO51799.json new file mode 100644 index 0000000..885f336 --- /dev/null +++ b/public/organe/PO51799.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51799", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51800.json b/public/organe/PO51800.json new file mode 100644 index 0000000..f6997f2 --- /dev/null +++ b/public/organe/PO51800.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51800", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51801.json b/public/organe/PO51801.json new file mode 100644 index 0000000..f6e9a5e --- /dev/null +++ b/public/organe/PO51801.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51801", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51802.json b/public/organe/PO51802.json new file mode 100644 index 0000000..6562d37 --- /dev/null +++ b/public/organe/PO51802.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51802", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51803.json b/public/organe/PO51803.json new file mode 100644 index 0000000..f430c07 --- /dev/null +++ b/public/organe/PO51803.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51803", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51804.json b/public/organe/PO51804.json new file mode 100644 index 0000000..3efe3a4 --- /dev/null +++ b/public/organe/PO51804.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51804", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51805.json b/public/organe/PO51805.json new file mode 100644 index 0000000..59ac351 --- /dev/null +++ b/public/organe/PO51805.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51805", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51806.json b/public/organe/PO51806.json new file mode 100644 index 0000000..e39a038 --- /dev/null +++ b/public/organe/PO51806.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51806", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51807.json b/public/organe/PO51807.json new file mode 100644 index 0000000..c876822 --- /dev/null +++ b/public/organe/PO51807.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51807", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51808.json b/public/organe/PO51808.json new file mode 100644 index 0000000..44f734f --- /dev/null +++ b/public/organe/PO51808.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51808", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51809.json b/public/organe/PO51809.json new file mode 100644 index 0000000..a1eb314 --- /dev/null +++ b/public/organe/PO51809.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51809", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51810.json b/public/organe/PO51810.json new file mode 100644 index 0000000..24156ff --- /dev/null +++ b/public/organe/PO51810.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51810", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51811.json b/public/organe/PO51811.json new file mode 100644 index 0000000..542c43a --- /dev/null +++ b/public/organe/PO51811.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51811", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51812.json b/public/organe/PO51812.json new file mode 100644 index 0000000..c4a467e --- /dev/null +++ b/public/organe/PO51812.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51812", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51813.json b/public/organe/PO51813.json new file mode 100644 index 0000000..2bcb1e2 --- /dev/null +++ b/public/organe/PO51813.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51813", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51814.json b/public/organe/PO51814.json new file mode 100644 index 0000000..907ce59 --- /dev/null +++ b/public/organe/PO51814.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51814", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51815.json b/public/organe/PO51815.json new file mode 100644 index 0000000..5c12d68 --- /dev/null +++ b/public/organe/PO51815.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51815", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51816.json b/public/organe/PO51816.json new file mode 100644 index 0000000..2ca7645 --- /dev/null +++ b/public/organe/PO51816.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51816", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51817.json b/public/organe/PO51817.json new file mode 100644 index 0000000..2d10d4a --- /dev/null +++ b/public/organe/PO51817.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51817", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51818.json b/public/organe/PO51818.json new file mode 100644 index 0000000..d1bb40b --- /dev/null +++ b/public/organe/PO51818.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51818", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51819.json b/public/organe/PO51819.json new file mode 100644 index 0000000..76e2ddd --- /dev/null +++ b/public/organe/PO51819.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51819", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51820.json b/public/organe/PO51820.json new file mode 100644 index 0000000..93c28fb --- /dev/null +++ b/public/organe/PO51820.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51820", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51821.json b/public/organe/PO51821.json new file mode 100644 index 0000000..6a2ad6a --- /dev/null +++ b/public/organe/PO51821.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51821", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51822.json b/public/organe/PO51822.json new file mode 100644 index 0000000..20f79e0 --- /dev/null +++ b/public/organe/PO51822.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51822", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51823.json b/public/organe/PO51823.json new file mode 100644 index 0000000..c7f912b --- /dev/null +++ b/public/organe/PO51823.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51823", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51824.json b/public/organe/PO51824.json new file mode 100644 index 0000000..fe2355d --- /dev/null +++ b/public/organe/PO51824.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51824", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51825.json b/public/organe/PO51825.json new file mode 100644 index 0000000..7219eea --- /dev/null +++ b/public/organe/PO51825.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51825", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51826.json b/public/organe/PO51826.json new file mode 100644 index 0000000..3720d5a --- /dev/null +++ b/public/organe/PO51826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51826", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51827.json b/public/organe/PO51827.json new file mode 100644 index 0000000..bedb4b2 --- /dev/null +++ b/public/organe/PO51827.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51827", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51828.json b/public/organe/PO51828.json new file mode 100644 index 0000000..4fc712d --- /dev/null +++ b/public/organe/PO51828.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51828", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51829.json b/public/organe/PO51829.json new file mode 100644 index 0000000..a758230 --- /dev/null +++ b/public/organe/PO51829.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51829", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51830.json b/public/organe/PO51830.json new file mode 100644 index 0000000..0b800fa --- /dev/null +++ b/public/organe/PO51830.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51830", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51831.json b/public/organe/PO51831.json new file mode 100644 index 0000000..729c503 --- /dev/null +++ b/public/organe/PO51831.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51831", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51832.json b/public/organe/PO51832.json new file mode 100644 index 0000000..8f94240 --- /dev/null +++ b/public/organe/PO51832.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51832", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51833.json b/public/organe/PO51833.json new file mode 100644 index 0000000..f271e50 --- /dev/null +++ b/public/organe/PO51833.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51833", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51834.json b/public/organe/PO51834.json new file mode 100644 index 0000000..624f8a8 --- /dev/null +++ b/public/organe/PO51834.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51834", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51835.json b/public/organe/PO51835.json new file mode 100644 index 0000000..70b9527 --- /dev/null +++ b/public/organe/PO51835.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51835", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51836.json b/public/organe/PO51836.json new file mode 100644 index 0000000..d60369b --- /dev/null +++ b/public/organe/PO51836.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51836", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51837.json b/public/organe/PO51837.json new file mode 100644 index 0000000..b80db97 --- /dev/null +++ b/public/organe/PO51837.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51837", "codeType": "CIRCONSCRIPTION", "libelle": "22\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b022\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "22", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51838.json b/public/organe/PO51838.json new file mode 100644 index 0000000..6f20a45 --- /dev/null +++ b/public/organe/PO51838.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51838", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51839.json b/public/organe/PO51839.json new file mode 100644 index 0000000..66eb282 --- /dev/null +++ b/public/organe/PO51839.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51839", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51840.json b/public/organe/PO51840.json new file mode 100644 index 0000000..0c70dbf --- /dev/null +++ b/public/organe/PO51840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51840", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51841.json b/public/organe/PO51841.json new file mode 100644 index 0000000..dfe7fa5 --- /dev/null +++ b/public/organe/PO51841.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51841", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51842.json b/public/organe/PO51842.json new file mode 100644 index 0000000..adc2079 --- /dev/null +++ b/public/organe/PO51842.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51842", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51843.json b/public/organe/PO51843.json new file mode 100644 index 0000000..209aa10 --- /dev/null +++ b/public/organe/PO51843.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51843", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51844.json b/public/organe/PO51844.json new file mode 100644 index 0000000..13ab2e6 --- /dev/null +++ b/public/organe/PO51844.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51844", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51845.json b/public/organe/PO51845.json new file mode 100644 index 0000000..d41a750 --- /dev/null +++ b/public/organe/PO51845.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51845", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51846.json b/public/organe/PO51846.json new file mode 100644 index 0000000..403bee7 --- /dev/null +++ b/public/organe/PO51846.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51846", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51847.json b/public/organe/PO51847.json new file mode 100644 index 0000000..0cdf783 --- /dev/null +++ b/public/organe/PO51847.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51847", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51848.json b/public/organe/PO51848.json new file mode 100644 index 0000000..49397fa --- /dev/null +++ b/public/organe/PO51848.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51848", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51849.json b/public/organe/PO51849.json new file mode 100644 index 0000000..df834cd --- /dev/null +++ b/public/organe/PO51849.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51849", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51850.json b/public/organe/PO51850.json new file mode 100644 index 0000000..b8dd2db --- /dev/null +++ b/public/organe/PO51850.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51850", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51851.json b/public/organe/PO51851.json new file mode 100644 index 0000000..1d5f370 --- /dev/null +++ b/public/organe/PO51851.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51851", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51852.json b/public/organe/PO51852.json new file mode 100644 index 0000000..0edd2e8 --- /dev/null +++ b/public/organe/PO51852.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51852", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51853.json b/public/organe/PO51853.json new file mode 100644 index 0000000..14a13aa --- /dev/null +++ b/public/organe/PO51853.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51853", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51854.json b/public/organe/PO51854.json new file mode 100644 index 0000000..5ac98fd --- /dev/null +++ b/public/organe/PO51854.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51854", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51855.json b/public/organe/PO51855.json new file mode 100644 index 0000000..1d2b671 --- /dev/null +++ b/public/organe/PO51855.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51855", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51856.json b/public/organe/PO51856.json new file mode 100644 index 0000000..2452b91 --- /dev/null +++ b/public/organe/PO51856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51856", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51857.json b/public/organe/PO51857.json new file mode 100644 index 0000000..8b40d3d --- /dev/null +++ b/public/organe/PO51857.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51857", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51858.json b/public/organe/PO51858.json new file mode 100644 index 0000000..ece9283 --- /dev/null +++ b/public/organe/PO51858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51858", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51859.json b/public/organe/PO51859.json new file mode 100644 index 0000000..705588e --- /dev/null +++ b/public/organe/PO51859.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51859", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51860.json b/public/organe/PO51860.json new file mode 100644 index 0000000..81b2029 --- /dev/null +++ b/public/organe/PO51860.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51860", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51861.json b/public/organe/PO51861.json new file mode 100644 index 0000000..4396b28 --- /dev/null +++ b/public/organe/PO51861.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51861", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51862.json b/public/organe/PO51862.json new file mode 100644 index 0000000..feb0e05 --- /dev/null +++ b/public/organe/PO51862.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51862", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51863.json b/public/organe/PO51863.json new file mode 100644 index 0000000..7d93636 --- /dev/null +++ b/public/organe/PO51863.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51863", "codeType": "CIRCONSCRIPTION", "libelle": "24\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b024\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "24", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51864.json b/public/organe/PO51864.json new file mode 100644 index 0000000..c31b84b --- /dev/null +++ b/public/organe/PO51864.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51864", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51865.json b/public/organe/PO51865.json new file mode 100644 index 0000000..1ac0d62 --- /dev/null +++ b/public/organe/PO51865.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51865", "codeType": "CIRCONSCRIPTION", "libelle": "22\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b022\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "22", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51866.json b/public/organe/PO51866.json new file mode 100644 index 0000000..7995888 --- /dev/null +++ b/public/organe/PO51866.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51866", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51867.json b/public/organe/PO51867.json new file mode 100644 index 0000000..c35b901 --- /dev/null +++ b/public/organe/PO51867.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51867", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51868.json b/public/organe/PO51868.json new file mode 100644 index 0000000..7112c64 --- /dev/null +++ b/public/organe/PO51868.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51868", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51869.json b/public/organe/PO51869.json new file mode 100644 index 0000000..8ff6b24 --- /dev/null +++ b/public/organe/PO51869.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51869", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51870.json b/public/organe/PO51870.json new file mode 100644 index 0000000..57de0e7 --- /dev/null +++ b/public/organe/PO51870.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51870", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51871.json b/public/organe/PO51871.json new file mode 100644 index 0000000..436ae1b --- /dev/null +++ b/public/organe/PO51871.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51871", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51872.json b/public/organe/PO51872.json new file mode 100644 index 0000000..308ef24 --- /dev/null +++ b/public/organe/PO51872.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51872", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51873.json b/public/organe/PO51873.json new file mode 100644 index 0000000..15907f2 --- /dev/null +++ b/public/organe/PO51873.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51873", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51874.json b/public/organe/PO51874.json new file mode 100644 index 0000000..d416d2a --- /dev/null +++ b/public/organe/PO51874.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51874", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51875.json b/public/organe/PO51875.json new file mode 100644 index 0000000..e18ab23 --- /dev/null +++ b/public/organe/PO51875.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51875", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51876.json b/public/organe/PO51876.json new file mode 100644 index 0000000..d5c4e28 --- /dev/null +++ b/public/organe/PO51876.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51876", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51877.json b/public/organe/PO51877.json new file mode 100644 index 0000000..271c997 --- /dev/null +++ b/public/organe/PO51877.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51877", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51878.json b/public/organe/PO51878.json new file mode 100644 index 0000000..6a99b8e --- /dev/null +++ b/public/organe/PO51878.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51878", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51879.json b/public/organe/PO51879.json new file mode 100644 index 0000000..7bccf17 --- /dev/null +++ b/public/organe/PO51879.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51879", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51880.json b/public/organe/PO51880.json new file mode 100644 index 0000000..a1d2ddb --- /dev/null +++ b/public/organe/PO51880.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51880", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51881.json b/public/organe/PO51881.json new file mode 100644 index 0000000..80568f4 --- /dev/null +++ b/public/organe/PO51881.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51881", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51882.json b/public/organe/PO51882.json new file mode 100644 index 0000000..5232579 --- /dev/null +++ b/public/organe/PO51882.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51882", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51883.json b/public/organe/PO51883.json new file mode 100644 index 0000000..128b58c --- /dev/null +++ b/public/organe/PO51883.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51883", "codeType": "CIRCONSCRIPTION", "libelle": "24\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b024\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "24", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51884.json b/public/organe/PO51884.json new file mode 100644 index 0000000..66e1406 --- /dev/null +++ b/public/organe/PO51884.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51884", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51885.json b/public/organe/PO51885.json new file mode 100644 index 0000000..920601f --- /dev/null +++ b/public/organe/PO51885.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51885", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51886.json b/public/organe/PO51886.json new file mode 100644 index 0000000..81f54b9 --- /dev/null +++ b/public/organe/PO51886.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51886", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51887.json b/public/organe/PO51887.json new file mode 100644 index 0000000..5ffb38d --- /dev/null +++ b/public/organe/PO51887.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51887", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51888.json b/public/organe/PO51888.json new file mode 100644 index 0000000..202b5f1 --- /dev/null +++ b/public/organe/PO51888.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51888", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51889.json b/public/organe/PO51889.json new file mode 100644 index 0000000..ce29cbc --- /dev/null +++ b/public/organe/PO51889.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51889", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51890.json b/public/organe/PO51890.json new file mode 100644 index 0000000..07f4744 --- /dev/null +++ b/public/organe/PO51890.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51890", "codeType": "CIRCONSCRIPTION", "libelle": "22\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b022\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "22", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51891.json b/public/organe/PO51891.json new file mode 100644 index 0000000..44f4fc4 --- /dev/null +++ b/public/organe/PO51891.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51891", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51892.json b/public/organe/PO51892.json new file mode 100644 index 0000000..a6f0a6a --- /dev/null +++ b/public/organe/PO51892.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51892", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51893.json b/public/organe/PO51893.json new file mode 100644 index 0000000..deb3c94 --- /dev/null +++ b/public/organe/PO51893.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51893", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51894.json b/public/organe/PO51894.json new file mode 100644 index 0000000..b11b563 --- /dev/null +++ b/public/organe/PO51894.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51894", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51895.json b/public/organe/PO51895.json new file mode 100644 index 0000000..f22eb01 --- /dev/null +++ b/public/organe/PO51895.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51895", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51896.json b/public/organe/PO51896.json new file mode 100644 index 0000000..4b6b87c --- /dev/null +++ b/public/organe/PO51896.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51896", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51897.json b/public/organe/PO51897.json new file mode 100644 index 0000000..0e7c75c --- /dev/null +++ b/public/organe/PO51897.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51897", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51898.json b/public/organe/PO51898.json new file mode 100644 index 0000000..038cd16 --- /dev/null +++ b/public/organe/PO51898.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51898", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51899.json b/public/organe/PO51899.json new file mode 100644 index 0000000..5f68cc9 --- /dev/null +++ b/public/organe/PO51899.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51899", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51900.json b/public/organe/PO51900.json new file mode 100644 index 0000000..09dbc9f --- /dev/null +++ b/public/organe/PO51900.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51900", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51901.json b/public/organe/PO51901.json new file mode 100644 index 0000000..2a9fa42 --- /dev/null +++ b/public/organe/PO51901.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51901", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51902.json b/public/organe/PO51902.json new file mode 100644 index 0000000..955185f --- /dev/null +++ b/public/organe/PO51902.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51902", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51903.json b/public/organe/PO51903.json new file mode 100644 index 0000000..58ab736 --- /dev/null +++ b/public/organe/PO51903.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51903", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51904.json b/public/organe/PO51904.json new file mode 100644 index 0000000..8d74e26 --- /dev/null +++ b/public/organe/PO51904.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51904", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51905.json b/public/organe/PO51905.json new file mode 100644 index 0000000..61c8340 --- /dev/null +++ b/public/organe/PO51905.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51905", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51906.json b/public/organe/PO51906.json new file mode 100644 index 0000000..8e48878 --- /dev/null +++ b/public/organe/PO51906.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51906", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51907.json b/public/organe/PO51907.json new file mode 100644 index 0000000..56ff655 --- /dev/null +++ b/public/organe/PO51907.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51907", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51908.json b/public/organe/PO51908.json new file mode 100644 index 0000000..de7bcd1 --- /dev/null +++ b/public/organe/PO51908.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51908", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51909.json b/public/organe/PO51909.json new file mode 100644 index 0000000..ad15b08 --- /dev/null +++ b/public/organe/PO51909.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51909", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51910.json b/public/organe/PO51910.json new file mode 100644 index 0000000..568dede --- /dev/null +++ b/public/organe/PO51910.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51910", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51911.json b/public/organe/PO51911.json new file mode 100644 index 0000000..9bf9bea --- /dev/null +++ b/public/organe/PO51911.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51911", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51912.json b/public/organe/PO51912.json new file mode 100644 index 0000000..1e059ba --- /dev/null +++ b/public/organe/PO51912.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51912", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51913.json b/public/organe/PO51913.json new file mode 100644 index 0000000..557acfc --- /dev/null +++ b/public/organe/PO51913.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51913", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51914.json b/public/organe/PO51914.json new file mode 100644 index 0000000..2dd9c8a --- /dev/null +++ b/public/organe/PO51914.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51914", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51915.json b/public/organe/PO51915.json new file mode 100644 index 0000000..a9f6f1a --- /dev/null +++ b/public/organe/PO51915.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51915", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51916.json b/public/organe/PO51916.json new file mode 100644 index 0000000..0535f43 --- /dev/null +++ b/public/organe/PO51916.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51916", "codeType": "CIRCONSCRIPTION", "libelle": "24\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b024\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "24", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51917.json b/public/organe/PO51917.json new file mode 100644 index 0000000..e7c6763 --- /dev/null +++ b/public/organe/PO51917.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51917", "codeType": "CIRCONSCRIPTION", "libelle": "22\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b022\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "22", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO51918.json b/public/organe/PO51918.json new file mode 100644 index 0000000..0026a51 --- /dev/null +++ b/public/organe/PO51918.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51918", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51919.json b/public/organe/PO51919.json new file mode 100644 index 0000000..4e4cf36 --- /dev/null +++ b/public/organe/PO51919.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51919", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51920.json b/public/organe/PO51920.json new file mode 100644 index 0000000..ce96c1f --- /dev/null +++ b/public/organe/PO51920.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51920", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51921.json b/public/organe/PO51921.json new file mode 100644 index 0000000..d48dd61 --- /dev/null +++ b/public/organe/PO51921.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51921", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51922.json b/public/organe/PO51922.json new file mode 100644 index 0000000..9f21754 --- /dev/null +++ b/public/organe/PO51922.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51922", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51923.json b/public/organe/PO51923.json new file mode 100644 index 0000000..f4abda2 --- /dev/null +++ b/public/organe/PO51923.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51923", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51924.json b/public/organe/PO51924.json new file mode 100644 index 0000000..499ac86 --- /dev/null +++ b/public/organe/PO51924.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51924", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51925.json b/public/organe/PO51925.json new file mode 100644 index 0000000..0473e18 --- /dev/null +++ b/public/organe/PO51925.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51925", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51926.json b/public/organe/PO51926.json new file mode 100644 index 0000000..79f7bbf --- /dev/null +++ b/public/organe/PO51926.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51926", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51927.json b/public/organe/PO51927.json new file mode 100644 index 0000000..16d2fd2 --- /dev/null +++ b/public/organe/PO51927.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51927", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51928.json b/public/organe/PO51928.json new file mode 100644 index 0000000..6a74c07 --- /dev/null +++ b/public/organe/PO51928.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51928", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51929.json b/public/organe/PO51929.json new file mode 100644 index 0000000..8e0fbc6 --- /dev/null +++ b/public/organe/PO51929.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51929", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription n\u00b0 0 de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 0\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "0", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51930.json b/public/organe/PO51930.json new file mode 100644 index 0000000..2d28bef --- /dev/null +++ b/public/organe/PO51930.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51930", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51931.json b/public/organe/PO51931.json new file mode 100644 index 0000000..081213e --- /dev/null +++ b/public/organe/PO51931.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51931", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51932.json b/public/organe/PO51932.json new file mode 100644 index 0000000..e508a1e --- /dev/null +++ b/public/organe/PO51932.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51932", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51933.json b/public/organe/PO51933.json new file mode 100644 index 0000000..b6af687 --- /dev/null +++ b/public/organe/PO51933.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51933", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51934.json b/public/organe/PO51934.json new file mode 100644 index 0000000..8432062 --- /dev/null +++ b/public/organe/PO51934.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51934", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51935.json b/public/organe/PO51935.json new file mode 100644 index 0000000..227114b --- /dev/null +++ b/public/organe/PO51935.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51935", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51936.json b/public/organe/PO51936.json new file mode 100644 index 0000000..4a41c13 --- /dev/null +++ b/public/organe/PO51936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51936", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51937.json b/public/organe/PO51937.json new file mode 100644 index 0000000..2ae63e4 --- /dev/null +++ b/public/organe/PO51937.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51937", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51938.json b/public/organe/PO51938.json new file mode 100644 index 0000000..fde687f --- /dev/null +++ b/public/organe/PO51938.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51938", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51939.json b/public/organe/PO51939.json new file mode 100644 index 0000000..78be5bb --- /dev/null +++ b/public/organe/PO51939.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51939", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51940.json b/public/organe/PO51940.json new file mode 100644 index 0000000..24d2ac6 --- /dev/null +++ b/public/organe/PO51940.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51940", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51941.json b/public/organe/PO51941.json new file mode 100644 index 0000000..1c83ba9 --- /dev/null +++ b/public/organe/PO51941.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51941", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51942.json b/public/organe/PO51942.json new file mode 100644 index 0000000..d7926a5 --- /dev/null +++ b/public/organe/PO51942.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51942", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51943.json b/public/organe/PO51943.json new file mode 100644 index 0000000..62a59e8 --- /dev/null +++ b/public/organe/PO51943.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51943", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51944.json b/public/organe/PO51944.json new file mode 100644 index 0000000..fe5c1ae --- /dev/null +++ b/public/organe/PO51944.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51944", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51945.json b/public/organe/PO51945.json new file mode 100644 index 0000000..476f534 --- /dev/null +++ b/public/organe/PO51945.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51945", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51946.json b/public/organe/PO51946.json new file mode 100644 index 0000000..e390852 --- /dev/null +++ b/public/organe/PO51946.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51946", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51947.json b/public/organe/PO51947.json new file mode 100644 index 0000000..05c429e --- /dev/null +++ b/public/organe/PO51947.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51947", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51948.json b/public/organe/PO51948.json new file mode 100644 index 0000000..75064ec --- /dev/null +++ b/public/organe/PO51948.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51948", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51949.json b/public/organe/PO51949.json new file mode 100644 index 0000000..42fd3bc --- /dev/null +++ b/public/organe/PO51949.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51949", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51950.json b/public/organe/PO51950.json new file mode 100644 index 0000000..5d1ca67 --- /dev/null +++ b/public/organe/PO51950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51950", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51951.json b/public/organe/PO51951.json new file mode 100644 index 0000000..c5782c8 --- /dev/null +++ b/public/organe/PO51951.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51951", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51952.json b/public/organe/PO51952.json new file mode 100644 index 0000000..fbcbe81 --- /dev/null +++ b/public/organe/PO51952.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51952", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51953.json b/public/organe/PO51953.json new file mode 100644 index 0000000..7d5b253 --- /dev/null +++ b/public/organe/PO51953.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51953", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51954.json b/public/organe/PO51954.json new file mode 100644 index 0000000..a9ce270 --- /dev/null +++ b/public/organe/PO51954.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51954", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51955.json b/public/organe/PO51955.json new file mode 100644 index 0000000..1edd16d --- /dev/null +++ b/public/organe/PO51955.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51955", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51956.json b/public/organe/PO51956.json new file mode 100644 index 0000000..9c1a541 --- /dev/null +++ b/public/organe/PO51956.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51956", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51957.json b/public/organe/PO51957.json new file mode 100644 index 0000000..a7616bf --- /dev/null +++ b/public/organe/PO51957.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51957", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51958.json b/public/organe/PO51958.json new file mode 100644 index 0000000..0bd2ec9 --- /dev/null +++ b/public/organe/PO51958.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51958", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51959.json b/public/organe/PO51959.json new file mode 100644 index 0000000..b3c34bb --- /dev/null +++ b/public/organe/PO51959.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51959", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51960.json b/public/organe/PO51960.json new file mode 100644 index 0000000..ae74587 --- /dev/null +++ b/public/organe/PO51960.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51960", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO51961.json b/public/organe/PO51961.json new file mode 100644 index 0000000..2c9c2a4 --- /dev/null +++ b/public/organe/PO51961.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51961", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51962.json b/public/organe/PO51962.json new file mode 100644 index 0000000..6c8002f --- /dev/null +++ b/public/organe/PO51962.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51962", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51963.json b/public/organe/PO51963.json new file mode 100644 index 0000000..df21999 --- /dev/null +++ b/public/organe/PO51963.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51963", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51964.json b/public/organe/PO51964.json new file mode 100644 index 0000000..180d156 --- /dev/null +++ b/public/organe/PO51964.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51964", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51965.json b/public/organe/PO51965.json new file mode 100644 index 0000000..07d96b7 --- /dev/null +++ b/public/organe/PO51965.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51965", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51966.json b/public/organe/PO51966.json new file mode 100644 index 0000000..4b28cd0 --- /dev/null +++ b/public/organe/PO51966.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51966", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51967.json b/public/organe/PO51967.json new file mode 100644 index 0000000..9851028 --- /dev/null +++ b/public/organe/PO51967.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51967", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51968.json b/public/organe/PO51968.json new file mode 100644 index 0000000..1369d57 --- /dev/null +++ b/public/organe/PO51968.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51968", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51969.json b/public/organe/PO51969.json new file mode 100644 index 0000000..a211975 --- /dev/null +++ b/public/organe/PO51969.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51969", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51970.json b/public/organe/PO51970.json new file mode 100644 index 0000000..0805a18 --- /dev/null +++ b/public/organe/PO51970.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51970", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51971.json b/public/organe/PO51971.json new file mode 100644 index 0000000..ca5b832 --- /dev/null +++ b/public/organe/PO51971.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51971", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51972.json b/public/organe/PO51972.json new file mode 100644 index 0000000..5aa9080 --- /dev/null +++ b/public/organe/PO51972.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51972", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51973.json b/public/organe/PO51973.json new file mode 100644 index 0000000..4b7acf4 --- /dev/null +++ b/public/organe/PO51973.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51973", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51974.json b/public/organe/PO51974.json new file mode 100644 index 0000000..ba212a1 --- /dev/null +++ b/public/organe/PO51974.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51974", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51975.json b/public/organe/PO51975.json new file mode 100644 index 0000000..dd38d91 --- /dev/null +++ b/public/organe/PO51975.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51975", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51976.json b/public/organe/PO51976.json new file mode 100644 index 0000000..e5e4252 --- /dev/null +++ b/public/organe/PO51976.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51976", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO51977.json b/public/organe/PO51977.json new file mode 100644 index 0000000..8595ca7 --- /dev/null +++ b/public/organe/PO51977.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51977", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51978.json b/public/organe/PO51978.json new file mode 100644 index 0000000..40cbb1e --- /dev/null +++ b/public/organe/PO51978.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51978", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51979.json b/public/organe/PO51979.json new file mode 100644 index 0000000..3cd7d96 --- /dev/null +++ b/public/organe/PO51979.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51979", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51980.json b/public/organe/PO51980.json new file mode 100644 index 0000000..14d2ae1 --- /dev/null +++ b/public/organe/PO51980.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51980", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51981.json b/public/organe/PO51981.json new file mode 100644 index 0000000..4178d75 --- /dev/null +++ b/public/organe/PO51981.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51981", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51982.json b/public/organe/PO51982.json new file mode 100644 index 0000000..1283b5f --- /dev/null +++ b/public/organe/PO51982.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51982", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51983.json b/public/organe/PO51983.json new file mode 100644 index 0000000..4f59d45 --- /dev/null +++ b/public/organe/PO51983.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51983", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51984.json b/public/organe/PO51984.json new file mode 100644 index 0000000..4872cb0 --- /dev/null +++ b/public/organe/PO51984.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51984", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51985.json b/public/organe/PO51985.json new file mode 100644 index 0000000..e74e74a --- /dev/null +++ b/public/organe/PO51985.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51985", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51986.json b/public/organe/PO51986.json new file mode 100644 index 0000000..c669ece --- /dev/null +++ b/public/organe/PO51986.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51986", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51987.json b/public/organe/PO51987.json new file mode 100644 index 0000000..76b3eb1 --- /dev/null +++ b/public/organe/PO51987.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51987", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51988.json b/public/organe/PO51988.json new file mode 100644 index 0000000..8007df7 --- /dev/null +++ b/public/organe/PO51988.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51988", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51989.json b/public/organe/PO51989.json new file mode 100644 index 0000000..a4a023b --- /dev/null +++ b/public/organe/PO51989.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51989", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51990.json b/public/organe/PO51990.json new file mode 100644 index 0000000..c04d9c6 --- /dev/null +++ b/public/organe/PO51990.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51990", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51991.json b/public/organe/PO51991.json new file mode 100644 index 0000000..f29cb91 --- /dev/null +++ b/public/organe/PO51991.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51991", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51992.json b/public/organe/PO51992.json new file mode 100644 index 0000000..f92ca89 --- /dev/null +++ b/public/organe/PO51992.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51992", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51993.json b/public/organe/PO51993.json new file mode 100644 index 0000000..cf17210 --- /dev/null +++ b/public/organe/PO51993.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51993", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51994.json b/public/organe/PO51994.json new file mode 100644 index 0000000..759ebfb --- /dev/null +++ b/public/organe/PO51994.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51994", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51995.json b/public/organe/PO51995.json new file mode 100644 index 0000000..6e92aae --- /dev/null +++ b/public/organe/PO51995.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51995", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51996.json b/public/organe/PO51996.json new file mode 100644 index 0000000..cb134a1 --- /dev/null +++ b/public/organe/PO51996.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51996", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51997.json b/public/organe/PO51997.json new file mode 100644 index 0000000..b257a70 --- /dev/null +++ b/public/organe/PO51997.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51997", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51998.json b/public/organe/PO51998.json new file mode 100644 index 0000000..e82e104 --- /dev/null +++ b/public/organe/PO51998.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51998", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO51999.json b/public/organe/PO51999.json new file mode 100644 index 0000000..664fcda --- /dev/null +++ b/public/organe/PO51999.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO51999", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52000.json b/public/organe/PO52000.json new file mode 100644 index 0000000..0e7c418 --- /dev/null +++ b/public/organe/PO52000.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52000", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52002.json b/public/organe/PO52002.json new file mode 100644 index 0000000..334eac4 --- /dev/null +++ b/public/organe/PO52002.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52002", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52003.json b/public/organe/PO52003.json new file mode 100644 index 0000000..7c88c0c --- /dev/null +++ b/public/organe/PO52003.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52003", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52004.json b/public/organe/PO52004.json new file mode 100644 index 0000000..7ad933d --- /dev/null +++ b/public/organe/PO52004.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52004", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52005.json b/public/organe/PO52005.json new file mode 100644 index 0000000..7c24de2 --- /dev/null +++ b/public/organe/PO52005.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52005", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52006.json b/public/organe/PO52006.json new file mode 100644 index 0000000..cf4382a --- /dev/null +++ b/public/organe/PO52006.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52006", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52007.json b/public/organe/PO52007.json new file mode 100644 index 0000000..c021779 --- /dev/null +++ b/public/organe/PO52007.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52007", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52008.json b/public/organe/PO52008.json new file mode 100644 index 0000000..e854d4a --- /dev/null +++ b/public/organe/PO52008.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52008", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52009.json b/public/organe/PO52009.json new file mode 100644 index 0000000..2724f1c --- /dev/null +++ b/public/organe/PO52009.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52009", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52010.json b/public/organe/PO52010.json new file mode 100644 index 0000000..75f4c57 --- /dev/null +++ b/public/organe/PO52010.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52010", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52011.json b/public/organe/PO52011.json new file mode 100644 index 0000000..94f3267 --- /dev/null +++ b/public/organe/PO52011.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52011", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52012.json b/public/organe/PO52012.json new file mode 100644 index 0000000..896f67f --- /dev/null +++ b/public/organe/PO52012.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52012", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52013.json b/public/organe/PO52013.json new file mode 100644 index 0000000..4789d32 --- /dev/null +++ b/public/organe/PO52013.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52013", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52014.json b/public/organe/PO52014.json new file mode 100644 index 0000000..e861153 --- /dev/null +++ b/public/organe/PO52014.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52014", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52015.json b/public/organe/PO52015.json new file mode 100644 index 0000000..2a8c7a6 --- /dev/null +++ b/public/organe/PO52015.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52015", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52016.json b/public/organe/PO52016.json new file mode 100644 index 0000000..ad2119b --- /dev/null +++ b/public/organe/PO52016.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52016", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52017.json b/public/organe/PO52017.json new file mode 100644 index 0000000..8d59df0 --- /dev/null +++ b/public/organe/PO52017.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52017", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52018.json b/public/organe/PO52018.json new file mode 100644 index 0000000..0b814f8 --- /dev/null +++ b/public/organe/PO52018.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52018", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52019.json b/public/organe/PO52019.json new file mode 100644 index 0000000..91b15a1 --- /dev/null +++ b/public/organe/PO52019.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52019", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52020.json b/public/organe/PO52020.json new file mode 100644 index 0000000..b39a3b2 --- /dev/null +++ b/public/organe/PO52020.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52020", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52021.json b/public/organe/PO52021.json new file mode 100644 index 0000000..cd9b34b --- /dev/null +++ b/public/organe/PO52021.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52021", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52022.json b/public/organe/PO52022.json new file mode 100644 index 0000000..196ff84 --- /dev/null +++ b/public/organe/PO52022.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52022", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52023.json b/public/organe/PO52023.json new file mode 100644 index 0000000..288c814 --- /dev/null +++ b/public/organe/PO52023.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52023", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52024.json b/public/organe/PO52024.json new file mode 100644 index 0000000..53f7b41 --- /dev/null +++ b/public/organe/PO52024.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52024", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52025.json b/public/organe/PO52025.json new file mode 100644 index 0000000..29bf8f3 --- /dev/null +++ b/public/organe/PO52025.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52025", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52026.json b/public/organe/PO52026.json new file mode 100644 index 0000000..87a6c9c --- /dev/null +++ b/public/organe/PO52026.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52026", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52027.json b/public/organe/PO52027.json new file mode 100644 index 0000000..d74defb --- /dev/null +++ b/public/organe/PO52027.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52027", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52028.json b/public/organe/PO52028.json new file mode 100644 index 0000000..c3c8510 --- /dev/null +++ b/public/organe/PO52028.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52028", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52029.json b/public/organe/PO52029.json new file mode 100644 index 0000000..3ecd334 --- /dev/null +++ b/public/organe/PO52029.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52029", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52030.json b/public/organe/PO52030.json new file mode 100644 index 0000000..715d49b --- /dev/null +++ b/public/organe/PO52030.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52030", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52031.json b/public/organe/PO52031.json new file mode 100644 index 0000000..8a55f37 --- /dev/null +++ b/public/organe/PO52031.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52031", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52032.json b/public/organe/PO52032.json new file mode 100644 index 0000000..d295f1f --- /dev/null +++ b/public/organe/PO52032.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52032", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52033.json b/public/organe/PO52033.json new file mode 100644 index 0000000..0c05bdd --- /dev/null +++ b/public/organe/PO52033.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52033", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52034.json b/public/organe/PO52034.json new file mode 100644 index 0000000..331c91e --- /dev/null +++ b/public/organe/PO52034.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52034", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52035.json b/public/organe/PO52035.json new file mode 100644 index 0000000..cc61e44 --- /dev/null +++ b/public/organe/PO52035.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52035", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52036.json b/public/organe/PO52036.json new file mode 100644 index 0000000..a46a1f7 --- /dev/null +++ b/public/organe/PO52036.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52036", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52037.json b/public/organe/PO52037.json new file mode 100644 index 0000000..aed1035 --- /dev/null +++ b/public/organe/PO52037.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52037", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52038.json b/public/organe/PO52038.json new file mode 100644 index 0000000..d34c3c7 --- /dev/null +++ b/public/organe/PO52038.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52038", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52039.json b/public/organe/PO52039.json new file mode 100644 index 0000000..2f80a76 --- /dev/null +++ b/public/organe/PO52039.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52039", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52040.json b/public/organe/PO52040.json new file mode 100644 index 0000000..78ff84c --- /dev/null +++ b/public/organe/PO52040.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52040", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52041.json b/public/organe/PO52041.json new file mode 100644 index 0000000..4f65db0 --- /dev/null +++ b/public/organe/PO52041.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52041", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52042.json b/public/organe/PO52042.json new file mode 100644 index 0000000..2cd6f6b --- /dev/null +++ b/public/organe/PO52042.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52042", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52043.json b/public/organe/PO52043.json new file mode 100644 index 0000000..b99826f --- /dev/null +++ b/public/organe/PO52043.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52043", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52044.json b/public/organe/PO52044.json new file mode 100644 index 0000000..a21c923 --- /dev/null +++ b/public/organe/PO52044.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52044", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO52045.json b/public/organe/PO52045.json new file mode 100644 index 0000000..413154b --- /dev/null +++ b/public/organe/PO52045.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52045", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52046.json b/public/organe/PO52046.json new file mode 100644 index 0000000..e0ea989 --- /dev/null +++ b/public/organe/PO52046.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52046", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52047.json b/public/organe/PO52047.json new file mode 100644 index 0000000..0fb2532 --- /dev/null +++ b/public/organe/PO52047.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52047", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52048.json b/public/organe/PO52048.json new file mode 100644 index 0000000..740e115 --- /dev/null +++ b/public/organe/PO52048.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52048", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52049.json b/public/organe/PO52049.json new file mode 100644 index 0000000..115b939 --- /dev/null +++ b/public/organe/PO52049.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52049", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52050.json b/public/organe/PO52050.json new file mode 100644 index 0000000..f503128 --- /dev/null +++ b/public/organe/PO52050.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52050", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52051.json b/public/organe/PO52051.json new file mode 100644 index 0000000..c685b87 --- /dev/null +++ b/public/organe/PO52051.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52051", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52052.json b/public/organe/PO52052.json new file mode 100644 index 0000000..d985ed9 --- /dev/null +++ b/public/organe/PO52052.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52052", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52053.json b/public/organe/PO52053.json new file mode 100644 index 0000000..836b259 --- /dev/null +++ b/public/organe/PO52053.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52053", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52054.json b/public/organe/PO52054.json new file mode 100644 index 0000000..01f4d6d --- /dev/null +++ b/public/organe/PO52054.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52054", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52055.json b/public/organe/PO52055.json new file mode 100644 index 0000000..115d61f --- /dev/null +++ b/public/organe/PO52055.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52055", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52056.json b/public/organe/PO52056.json new file mode 100644 index 0000000..5f0f493 --- /dev/null +++ b/public/organe/PO52056.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52056", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52057.json b/public/organe/PO52057.json new file mode 100644 index 0000000..a0fb8c8 --- /dev/null +++ b/public/organe/PO52057.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52057", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52058.json b/public/organe/PO52058.json new file mode 100644 index 0000000..cca258a --- /dev/null +++ b/public/organe/PO52058.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52058", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52059.json b/public/organe/PO52059.json new file mode 100644 index 0000000..67185a7 --- /dev/null +++ b/public/organe/PO52059.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52059", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52060.json b/public/organe/PO52060.json new file mode 100644 index 0000000..182af09 --- /dev/null +++ b/public/organe/PO52060.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52060", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52061.json b/public/organe/PO52061.json new file mode 100644 index 0000000..91c6dda --- /dev/null +++ b/public/organe/PO52061.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52061", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52062.json b/public/organe/PO52062.json new file mode 100644 index 0000000..48a6265 --- /dev/null +++ b/public/organe/PO52062.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52062", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52063.json b/public/organe/PO52063.json new file mode 100644 index 0000000..055af9b --- /dev/null +++ b/public/organe/PO52063.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52063", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52064.json b/public/organe/PO52064.json new file mode 100644 index 0000000..609a6d2 --- /dev/null +++ b/public/organe/PO52064.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52064", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52065.json b/public/organe/PO52065.json new file mode 100644 index 0000000..225772b --- /dev/null +++ b/public/organe/PO52065.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52065", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52066.json b/public/organe/PO52066.json new file mode 100644 index 0000000..45e39a6 --- /dev/null +++ b/public/organe/PO52066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52066", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52067.json b/public/organe/PO52067.json new file mode 100644 index 0000000..d24edad --- /dev/null +++ b/public/organe/PO52067.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52067", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52068.json b/public/organe/PO52068.json new file mode 100644 index 0000000..6ef0025 --- /dev/null +++ b/public/organe/PO52068.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52068", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52069.json b/public/organe/PO52069.json new file mode 100644 index 0000000..087220c --- /dev/null +++ b/public/organe/PO52069.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52069", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52070.json b/public/organe/PO52070.json new file mode 100644 index 0000000..759bd48 --- /dev/null +++ b/public/organe/PO52070.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52070", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52071.json b/public/organe/PO52071.json new file mode 100644 index 0000000..4dee5a9 --- /dev/null +++ b/public/organe/PO52071.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52071", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52072.json b/public/organe/PO52072.json new file mode 100644 index 0000000..aaaae50 --- /dev/null +++ b/public/organe/PO52072.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52072", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52073.json b/public/organe/PO52073.json new file mode 100644 index 0000000..c4763cc --- /dev/null +++ b/public/organe/PO52073.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52073", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52074.json b/public/organe/PO52074.json new file mode 100644 index 0000000..7559eb4 --- /dev/null +++ b/public/organe/PO52074.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52074", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52075.json b/public/organe/PO52075.json new file mode 100644 index 0000000..e357b8d --- /dev/null +++ b/public/organe/PO52075.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52075", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52076.json b/public/organe/PO52076.json new file mode 100644 index 0000000..1d1e441 --- /dev/null +++ b/public/organe/PO52076.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52076", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52077.json b/public/organe/PO52077.json new file mode 100644 index 0000000..fa524f5 --- /dev/null +++ b/public/organe/PO52077.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52077", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52078.json b/public/organe/PO52078.json new file mode 100644 index 0000000..05550fc --- /dev/null +++ b/public/organe/PO52078.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52078", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO52079.json b/public/organe/PO52079.json new file mode 100644 index 0000000..c28af02 --- /dev/null +++ b/public/organe/PO52079.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52079", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52080.json b/public/organe/PO52080.json new file mode 100644 index 0000000..ef38951 --- /dev/null +++ b/public/organe/PO52080.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52080", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52081.json b/public/organe/PO52081.json new file mode 100644 index 0000000..eb04689 --- /dev/null +++ b/public/organe/PO52081.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52081", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52082.json b/public/organe/PO52082.json new file mode 100644 index 0000000..c25d0f6 --- /dev/null +++ b/public/organe/PO52082.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52082", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52083.json b/public/organe/PO52083.json new file mode 100644 index 0000000..f708663 --- /dev/null +++ b/public/organe/PO52083.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52083", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52084.json b/public/organe/PO52084.json new file mode 100644 index 0000000..1f97ab6 --- /dev/null +++ b/public/organe/PO52084.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52084", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52085.json b/public/organe/PO52085.json new file mode 100644 index 0000000..ce4d030 --- /dev/null +++ b/public/organe/PO52085.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52085", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52086.json b/public/organe/PO52086.json new file mode 100644 index 0000000..2782ca9 --- /dev/null +++ b/public/organe/PO52086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52086", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52087.json b/public/organe/PO52087.json new file mode 100644 index 0000000..0ce397e --- /dev/null +++ b/public/organe/PO52087.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52087", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52088.json b/public/organe/PO52088.json new file mode 100644 index 0000000..307d9bb --- /dev/null +++ b/public/organe/PO52088.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52088", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52089.json b/public/organe/PO52089.json new file mode 100644 index 0000000..0207036 --- /dev/null +++ b/public/organe/PO52089.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52089", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52090.json b/public/organe/PO52090.json new file mode 100644 index 0000000..c473267 --- /dev/null +++ b/public/organe/PO52090.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52090", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52091.json b/public/organe/PO52091.json new file mode 100644 index 0000000..6776f01 --- /dev/null +++ b/public/organe/PO52091.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52091", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52092.json b/public/organe/PO52092.json new file mode 100644 index 0000000..c08df7a --- /dev/null +++ b/public/organe/PO52092.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52092", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52093.json b/public/organe/PO52093.json new file mode 100644 index 0000000..fb2590a --- /dev/null +++ b/public/organe/PO52093.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52093", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52094.json b/public/organe/PO52094.json new file mode 100644 index 0000000..f019992 --- /dev/null +++ b/public/organe/PO52094.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52094", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52095.json b/public/organe/PO52095.json new file mode 100644 index 0000000..741f6b5 --- /dev/null +++ b/public/organe/PO52095.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52095", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52096.json b/public/organe/PO52096.json new file mode 100644 index 0000000..af6960d --- /dev/null +++ b/public/organe/PO52096.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52096", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52097.json b/public/organe/PO52097.json new file mode 100644 index 0000000..c18a647 --- /dev/null +++ b/public/organe/PO52097.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52097", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52098.json b/public/organe/PO52098.json new file mode 100644 index 0000000..b85e644 --- /dev/null +++ b/public/organe/PO52098.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52098", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52099.json b/public/organe/PO52099.json new file mode 100644 index 0000000..a2bc0b7 --- /dev/null +++ b/public/organe/PO52099.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52099", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52100.json b/public/organe/PO52100.json new file mode 100644 index 0000000..f949744 --- /dev/null +++ b/public/organe/PO52100.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52100", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52101.json b/public/organe/PO52101.json new file mode 100644 index 0000000..6be1528 --- /dev/null +++ b/public/organe/PO52101.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52101", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52102.json b/public/organe/PO52102.json new file mode 100644 index 0000000..bcfa130 --- /dev/null +++ b/public/organe/PO52102.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52102", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52103.json b/public/organe/PO52103.json new file mode 100644 index 0000000..9f3415f --- /dev/null +++ b/public/organe/PO52103.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52103", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52104.json b/public/organe/PO52104.json new file mode 100644 index 0000000..839098c --- /dev/null +++ b/public/organe/PO52104.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52104", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52105.json b/public/organe/PO52105.json new file mode 100644 index 0000000..335d5f6 --- /dev/null +++ b/public/organe/PO52105.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52105", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52106.json b/public/organe/PO52106.json new file mode 100644 index 0000000..c829f25 --- /dev/null +++ b/public/organe/PO52106.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52106", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52107.json b/public/organe/PO52107.json new file mode 100644 index 0000000..b87667a --- /dev/null +++ b/public/organe/PO52107.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52107", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52108.json b/public/organe/PO52108.json new file mode 100644 index 0000000..8c715a3 --- /dev/null +++ b/public/organe/PO52108.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52108", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO52109.json b/public/organe/PO52109.json new file mode 100644 index 0000000..0b70058 --- /dev/null +++ b/public/organe/PO52109.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52109", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52110.json b/public/organe/PO52110.json new file mode 100644 index 0000000..2955ae1 --- /dev/null +++ b/public/organe/PO52110.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52110", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52111.json b/public/organe/PO52111.json new file mode 100644 index 0000000..72c96ca --- /dev/null +++ b/public/organe/PO52111.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52111", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52113.json b/public/organe/PO52113.json new file mode 100644 index 0000000..ba39374 --- /dev/null +++ b/public/organe/PO52113.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52113", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52114.json b/public/organe/PO52114.json new file mode 100644 index 0000000..9e342ca --- /dev/null +++ b/public/organe/PO52114.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52114", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52115.json b/public/organe/PO52115.json new file mode 100644 index 0000000..c3c09d0 --- /dev/null +++ b/public/organe/PO52115.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52115", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52116.json b/public/organe/PO52116.json new file mode 100644 index 0000000..700ce65 --- /dev/null +++ b/public/organe/PO52116.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52116", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52117.json b/public/organe/PO52117.json new file mode 100644 index 0000000..37b1c33 --- /dev/null +++ b/public/organe/PO52117.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52117", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52118.json b/public/organe/PO52118.json new file mode 100644 index 0000000..555aada --- /dev/null +++ b/public/organe/PO52118.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52118", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52119.json b/public/organe/PO52119.json new file mode 100644 index 0000000..e498bb7 --- /dev/null +++ b/public/organe/PO52119.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52119", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52120.json b/public/organe/PO52120.json new file mode 100644 index 0000000..7ca4fca --- /dev/null +++ b/public/organe/PO52120.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52120", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52121.json b/public/organe/PO52121.json new file mode 100644 index 0000000..9d2481d --- /dev/null +++ b/public/organe/PO52121.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52121", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52122.json b/public/organe/PO52122.json new file mode 100644 index 0000000..e86b653 --- /dev/null +++ b/public/organe/PO52122.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52122", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO52123.json b/public/organe/PO52123.json new file mode 100644 index 0000000..eef1754 --- /dev/null +++ b/public/organe/PO52123.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52123", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52124.json b/public/organe/PO52124.json new file mode 100644 index 0000000..f722ced --- /dev/null +++ b/public/organe/PO52124.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52124", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52125.json b/public/organe/PO52125.json new file mode 100644 index 0000000..daa4bff --- /dev/null +++ b/public/organe/PO52125.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52125", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52126.json b/public/organe/PO52126.json new file mode 100644 index 0000000..160d1d5 --- /dev/null +++ b/public/organe/PO52126.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52126", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52127.json b/public/organe/PO52127.json new file mode 100644 index 0000000..91f53d5 --- /dev/null +++ b/public/organe/PO52127.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52127", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52128.json b/public/organe/PO52128.json new file mode 100644 index 0000000..26714ca --- /dev/null +++ b/public/organe/PO52128.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52128", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52129.json b/public/organe/PO52129.json new file mode 100644 index 0000000..a92be85 --- /dev/null +++ b/public/organe/PO52129.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52129", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52130.json b/public/organe/PO52130.json new file mode 100644 index 0000000..8fe2b32 --- /dev/null +++ b/public/organe/PO52130.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52130", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52131.json b/public/organe/PO52131.json new file mode 100644 index 0000000..af9f4cd --- /dev/null +++ b/public/organe/PO52131.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52131", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52132.json b/public/organe/PO52132.json new file mode 100644 index 0000000..e73b846 --- /dev/null +++ b/public/organe/PO52132.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52132", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52133.json b/public/organe/PO52133.json new file mode 100644 index 0000000..c02fa59 --- /dev/null +++ b/public/organe/PO52133.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52133", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52134.json b/public/organe/PO52134.json new file mode 100644 index 0000000..fb61b21 --- /dev/null +++ b/public/organe/PO52134.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52134", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52135.json b/public/organe/PO52135.json new file mode 100644 index 0000000..8fb0496 --- /dev/null +++ b/public/organe/PO52135.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52135", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52136.json b/public/organe/PO52136.json new file mode 100644 index 0000000..17fa480 --- /dev/null +++ b/public/organe/PO52136.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52136", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52137.json b/public/organe/PO52137.json new file mode 100644 index 0000000..87b4927 --- /dev/null +++ b/public/organe/PO52137.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52137", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO52138.json b/public/organe/PO52138.json new file mode 100644 index 0000000..eb2785c --- /dev/null +++ b/public/organe/PO52138.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52138", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52139.json b/public/organe/PO52139.json new file mode 100644 index 0000000..79adf15 --- /dev/null +++ b/public/organe/PO52139.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52139", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52140.json b/public/organe/PO52140.json new file mode 100644 index 0000000..70e9103 --- /dev/null +++ b/public/organe/PO52140.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52140", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52141.json b/public/organe/PO52141.json new file mode 100644 index 0000000..6eec142 --- /dev/null +++ b/public/organe/PO52141.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52141", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52142.json b/public/organe/PO52142.json new file mode 100644 index 0000000..7368426 --- /dev/null +++ b/public/organe/PO52142.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52142", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52143.json b/public/organe/PO52143.json new file mode 100644 index 0000000..6ee3081 --- /dev/null +++ b/public/organe/PO52143.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52143", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52144.json b/public/organe/PO52144.json new file mode 100644 index 0000000..cc6f565 --- /dev/null +++ b/public/organe/PO52144.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52144", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52145.json b/public/organe/PO52145.json new file mode 100644 index 0000000..06e9396 --- /dev/null +++ b/public/organe/PO52145.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52145", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52146.json b/public/organe/PO52146.json new file mode 100644 index 0000000..75e2721 --- /dev/null +++ b/public/organe/PO52146.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52146", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52147.json b/public/organe/PO52147.json new file mode 100644 index 0000000..6be15ca --- /dev/null +++ b/public/organe/PO52147.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52147", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52148.json b/public/organe/PO52148.json new file mode 100644 index 0000000..f124dbe --- /dev/null +++ b/public/organe/PO52148.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52148", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52149.json b/public/organe/PO52149.json new file mode 100644 index 0000000..f8ef5a7 --- /dev/null +++ b/public/organe/PO52149.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52149", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52150.json b/public/organe/PO52150.json new file mode 100644 index 0000000..656ba17 --- /dev/null +++ b/public/organe/PO52150.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52150", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52151.json b/public/organe/PO52151.json new file mode 100644 index 0000000..2d4fdf3 --- /dev/null +++ b/public/organe/PO52151.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52151", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52152.json b/public/organe/PO52152.json new file mode 100644 index 0000000..a74210c --- /dev/null +++ b/public/organe/PO52152.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52152", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52153.json b/public/organe/PO52153.json new file mode 100644 index 0000000..76c41f5 --- /dev/null +++ b/public/organe/PO52153.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52153", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52154.json b/public/organe/PO52154.json new file mode 100644 index 0000000..b3cfaf7 --- /dev/null +++ b/public/organe/PO52154.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52154", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52155.json b/public/organe/PO52155.json new file mode 100644 index 0000000..d55e650 --- /dev/null +++ b/public/organe/PO52155.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52155", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52156.json b/public/organe/PO52156.json new file mode 100644 index 0000000..160d96d --- /dev/null +++ b/public/organe/PO52156.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52156", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52157.json b/public/organe/PO52157.json new file mode 100644 index 0000000..646042e --- /dev/null +++ b/public/organe/PO52157.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52157", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52158.json b/public/organe/PO52158.json new file mode 100644 index 0000000..79624bd --- /dev/null +++ b/public/organe/PO52158.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52158", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52159.json b/public/organe/PO52159.json new file mode 100644 index 0000000..14756aa --- /dev/null +++ b/public/organe/PO52159.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52159", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52160.json b/public/organe/PO52160.json new file mode 100644 index 0000000..69cc727 --- /dev/null +++ b/public/organe/PO52160.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52160", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52161.json b/public/organe/PO52161.json new file mode 100644 index 0000000..47f1e9f --- /dev/null +++ b/public/organe/PO52161.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52161", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52162.json b/public/organe/PO52162.json new file mode 100644 index 0000000..172e9ca --- /dev/null +++ b/public/organe/PO52162.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52162", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52163.json b/public/organe/PO52163.json new file mode 100644 index 0000000..5c18691 --- /dev/null +++ b/public/organe/PO52163.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52163", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52164.json b/public/organe/PO52164.json new file mode 100644 index 0000000..ac7ebf5 --- /dev/null +++ b/public/organe/PO52164.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52164", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52165.json b/public/organe/PO52165.json new file mode 100644 index 0000000..d51fa4f --- /dev/null +++ b/public/organe/PO52165.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52165", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52166.json b/public/organe/PO52166.json new file mode 100644 index 0000000..1bc512f --- /dev/null +++ b/public/organe/PO52166.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52166", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52167.json b/public/organe/PO52167.json new file mode 100644 index 0000000..a0b07bc --- /dev/null +++ b/public/organe/PO52167.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52167", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52168.json b/public/organe/PO52168.json new file mode 100644 index 0000000..7c153eb --- /dev/null +++ b/public/organe/PO52168.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52168", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52169.json b/public/organe/PO52169.json new file mode 100644 index 0000000..df9ad1e --- /dev/null +++ b/public/organe/PO52169.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52169", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52170.json b/public/organe/PO52170.json new file mode 100644 index 0000000..e844b7c --- /dev/null +++ b/public/organe/PO52170.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52170", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52171.json b/public/organe/PO52171.json new file mode 100644 index 0000000..2bd7cc0 --- /dev/null +++ b/public/organe/PO52171.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52171", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52172.json b/public/organe/PO52172.json new file mode 100644 index 0000000..738db26 --- /dev/null +++ b/public/organe/PO52172.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52172", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52173.json b/public/organe/PO52173.json new file mode 100644 index 0000000..58fc10a --- /dev/null +++ b/public/organe/PO52173.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52173", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52174.json b/public/organe/PO52174.json new file mode 100644 index 0000000..5affe6b --- /dev/null +++ b/public/organe/PO52174.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52174", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52175.json b/public/organe/PO52175.json new file mode 100644 index 0000000..c659db5 --- /dev/null +++ b/public/organe/PO52175.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52175", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52176.json b/public/organe/PO52176.json new file mode 100644 index 0000000..24700b6 --- /dev/null +++ b/public/organe/PO52176.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52176", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52177.json b/public/organe/PO52177.json new file mode 100644 index 0000000..9c8c05b --- /dev/null +++ b/public/organe/PO52177.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52177", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52178.json b/public/organe/PO52178.json new file mode 100644 index 0000000..a65ad44 --- /dev/null +++ b/public/organe/PO52178.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52178", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52179.json b/public/organe/PO52179.json new file mode 100644 index 0000000..51e3113 --- /dev/null +++ b/public/organe/PO52179.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52179", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52180.json b/public/organe/PO52180.json new file mode 100644 index 0000000..f02cecf --- /dev/null +++ b/public/organe/PO52180.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52180", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52181.json b/public/organe/PO52181.json new file mode 100644 index 0000000..88f6819 --- /dev/null +++ b/public/organe/PO52181.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52181", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52182.json b/public/organe/PO52182.json new file mode 100644 index 0000000..52f3deb --- /dev/null +++ b/public/organe/PO52182.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52182", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52183.json b/public/organe/PO52183.json new file mode 100644 index 0000000..b1191e3 --- /dev/null +++ b/public/organe/PO52183.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52183", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52184.json b/public/organe/PO52184.json new file mode 100644 index 0000000..b4b18b4 --- /dev/null +++ b/public/organe/PO52184.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52184", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52185.json b/public/organe/PO52185.json new file mode 100644 index 0000000..cc78445 --- /dev/null +++ b/public/organe/PO52185.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52185", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52186.json b/public/organe/PO52186.json new file mode 100644 index 0000000..6a70af3 --- /dev/null +++ b/public/organe/PO52186.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52186", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52187.json b/public/organe/PO52187.json new file mode 100644 index 0000000..7a2759f --- /dev/null +++ b/public/organe/PO52187.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52187", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52188.json b/public/organe/PO52188.json new file mode 100644 index 0000000..2cb9dc5 --- /dev/null +++ b/public/organe/PO52188.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52188", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52189.json b/public/organe/PO52189.json new file mode 100644 index 0000000..33b234e --- /dev/null +++ b/public/organe/PO52189.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52189", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52190.json b/public/organe/PO52190.json new file mode 100644 index 0000000..e9e1b66 --- /dev/null +++ b/public/organe/PO52190.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52190", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52191.json b/public/organe/PO52191.json new file mode 100644 index 0000000..cb064b1 --- /dev/null +++ b/public/organe/PO52191.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52191", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52192.json b/public/organe/PO52192.json new file mode 100644 index 0000000..35cdd63 --- /dev/null +++ b/public/organe/PO52192.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52192", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52193.json b/public/organe/PO52193.json new file mode 100644 index 0000000..e3b8ab9 --- /dev/null +++ b/public/organe/PO52193.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52193", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52194.json b/public/organe/PO52194.json new file mode 100644 index 0000000..3b94f7b --- /dev/null +++ b/public/organe/PO52194.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52194", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52195.json b/public/organe/PO52195.json new file mode 100644 index 0000000..7e0a064 --- /dev/null +++ b/public/organe/PO52195.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52195", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52196.json b/public/organe/PO52196.json new file mode 100644 index 0000000..c88c442 --- /dev/null +++ b/public/organe/PO52196.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52196", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52197.json b/public/organe/PO52197.json new file mode 100644 index 0000000..7f64aa4 --- /dev/null +++ b/public/organe/PO52197.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52197", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52198.json b/public/organe/PO52198.json new file mode 100644 index 0000000..aaf6bb9 --- /dev/null +++ b/public/organe/PO52198.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52198", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52199.json b/public/organe/PO52199.json new file mode 100644 index 0000000..3fa5e0c --- /dev/null +++ b/public/organe/PO52199.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52199", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52200.json b/public/organe/PO52200.json new file mode 100644 index 0000000..55d9ab2 --- /dev/null +++ b/public/organe/PO52200.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52200", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52201.json b/public/organe/PO52201.json new file mode 100644 index 0000000..06e9716 --- /dev/null +++ b/public/organe/PO52201.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52201", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52202.json b/public/organe/PO52202.json new file mode 100644 index 0000000..44989e5 --- /dev/null +++ b/public/organe/PO52202.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52202", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52203.json b/public/organe/PO52203.json new file mode 100644 index 0000000..4b729b1 --- /dev/null +++ b/public/organe/PO52203.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52203", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52204.json b/public/organe/PO52204.json new file mode 100644 index 0000000..a8ba2f7 --- /dev/null +++ b/public/organe/PO52204.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52204", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52205.json b/public/organe/PO52205.json new file mode 100644 index 0000000..8c1b171 --- /dev/null +++ b/public/organe/PO52205.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52205", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52206.json b/public/organe/PO52206.json new file mode 100644 index 0000000..46268c0 --- /dev/null +++ b/public/organe/PO52206.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52206", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52207.json b/public/organe/PO52207.json new file mode 100644 index 0000000..54b663f --- /dev/null +++ b/public/organe/PO52207.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52207", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52208.json b/public/organe/PO52208.json new file mode 100644 index 0000000..c5929b4 --- /dev/null +++ b/public/organe/PO52208.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52208", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52209.json b/public/organe/PO52209.json new file mode 100644 index 0000000..6f71872 --- /dev/null +++ b/public/organe/PO52209.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52209", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52210.json b/public/organe/PO52210.json new file mode 100644 index 0000000..db45912 --- /dev/null +++ b/public/organe/PO52210.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52210", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52211.json b/public/organe/PO52211.json new file mode 100644 index 0000000..aa9b7eb --- /dev/null +++ b/public/organe/PO52211.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52211", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52212.json b/public/organe/PO52212.json new file mode 100644 index 0000000..ba26467 --- /dev/null +++ b/public/organe/PO52212.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52212", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52213.json b/public/organe/PO52213.json new file mode 100644 index 0000000..c884e76 --- /dev/null +++ b/public/organe/PO52213.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52213", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52214.json b/public/organe/PO52214.json new file mode 100644 index 0000000..ca8af51 --- /dev/null +++ b/public/organe/PO52214.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52214", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52215.json b/public/organe/PO52215.json new file mode 100644 index 0000000..5b7a7d0 --- /dev/null +++ b/public/organe/PO52215.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52215", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52216.json b/public/organe/PO52216.json new file mode 100644 index 0000000..5d3c3cf --- /dev/null +++ b/public/organe/PO52216.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52216", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO52217.json b/public/organe/PO52217.json new file mode 100644 index 0000000..6cdede0 --- /dev/null +++ b/public/organe/PO52217.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52217", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52218.json b/public/organe/PO52218.json new file mode 100644 index 0000000..faa56bf --- /dev/null +++ b/public/organe/PO52218.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52218", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52219.json b/public/organe/PO52219.json new file mode 100644 index 0000000..cb94fa0 --- /dev/null +++ b/public/organe/PO52219.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52219", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52220.json b/public/organe/PO52220.json new file mode 100644 index 0000000..38a93ff --- /dev/null +++ b/public/organe/PO52220.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52220", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52221.json b/public/organe/PO52221.json new file mode 100644 index 0000000..181ef96 --- /dev/null +++ b/public/organe/PO52221.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52221", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52222.json b/public/organe/PO52222.json new file mode 100644 index 0000000..0b45f67 --- /dev/null +++ b/public/organe/PO52222.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52222", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52223.json b/public/organe/PO52223.json new file mode 100644 index 0000000..58fa23c --- /dev/null +++ b/public/organe/PO52223.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52223", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52224.json b/public/organe/PO52224.json new file mode 100644 index 0000000..c4b2721 --- /dev/null +++ b/public/organe/PO52224.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52224", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52225.json b/public/organe/PO52225.json new file mode 100644 index 0000000..04fff72 --- /dev/null +++ b/public/organe/PO52225.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52225", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52226.json b/public/organe/PO52226.json new file mode 100644 index 0000000..4208502 --- /dev/null +++ b/public/organe/PO52226.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52226", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52227.json b/public/organe/PO52227.json new file mode 100644 index 0000000..4af4cff --- /dev/null +++ b/public/organe/PO52227.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52227", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52228.json b/public/organe/PO52228.json new file mode 100644 index 0000000..83d096f --- /dev/null +++ b/public/organe/PO52228.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52228", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52229.json b/public/organe/PO52229.json new file mode 100644 index 0000000..09233b4 --- /dev/null +++ b/public/organe/PO52229.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52229", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52230.json b/public/organe/PO52230.json new file mode 100644 index 0000000..52e8219 --- /dev/null +++ b/public/organe/PO52230.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52230", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52231.json b/public/organe/PO52231.json new file mode 100644 index 0000000..c4e294a --- /dev/null +++ b/public/organe/PO52231.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52231", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52232.json b/public/organe/PO52232.json new file mode 100644 index 0000000..1e277e4 --- /dev/null +++ b/public/organe/PO52232.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52232", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52233.json b/public/organe/PO52233.json new file mode 100644 index 0000000..2228f9c --- /dev/null +++ b/public/organe/PO52233.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52233", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52234.json b/public/organe/PO52234.json new file mode 100644 index 0000000..c705051 --- /dev/null +++ b/public/organe/PO52234.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52234", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52235.json b/public/organe/PO52235.json new file mode 100644 index 0000000..8db0183 --- /dev/null +++ b/public/organe/PO52235.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52235", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52236.json b/public/organe/PO52236.json new file mode 100644 index 0000000..70d7396 --- /dev/null +++ b/public/organe/PO52236.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52236", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52237.json b/public/organe/PO52237.json new file mode 100644 index 0000000..3df76fc --- /dev/null +++ b/public/organe/PO52237.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52237", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52238.json b/public/organe/PO52238.json new file mode 100644 index 0000000..d7fc0ab --- /dev/null +++ b/public/organe/PO52238.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52238", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52239.json b/public/organe/PO52239.json new file mode 100644 index 0000000..9535c50 --- /dev/null +++ b/public/organe/PO52239.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52239", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52240.json b/public/organe/PO52240.json new file mode 100644 index 0000000..776eca8 --- /dev/null +++ b/public/organe/PO52240.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52240", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52241.json b/public/organe/PO52241.json new file mode 100644 index 0000000..7f84643 --- /dev/null +++ b/public/organe/PO52241.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52241", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52242.json b/public/organe/PO52242.json new file mode 100644 index 0000000..385b234 --- /dev/null +++ b/public/organe/PO52242.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52242", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52243.json b/public/organe/PO52243.json new file mode 100644 index 0000000..bfec39e --- /dev/null +++ b/public/organe/PO52243.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52243", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52244.json b/public/organe/PO52244.json new file mode 100644 index 0000000..e51ea21 --- /dev/null +++ b/public/organe/PO52244.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52244", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52245.json b/public/organe/PO52245.json new file mode 100644 index 0000000..f55de58 --- /dev/null +++ b/public/organe/PO52245.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52245", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52246.json b/public/organe/PO52246.json new file mode 100644 index 0000000..9d1c292 --- /dev/null +++ b/public/organe/PO52246.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52246", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52247.json b/public/organe/PO52247.json new file mode 100644 index 0000000..866f2b9 --- /dev/null +++ b/public/organe/PO52247.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52247", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52248.json b/public/organe/PO52248.json new file mode 100644 index 0000000..d88c5dd --- /dev/null +++ b/public/organe/PO52248.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52248", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52249.json b/public/organe/PO52249.json new file mode 100644 index 0000000..b50c1bc --- /dev/null +++ b/public/organe/PO52249.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52249", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52250.json b/public/organe/PO52250.json new file mode 100644 index 0000000..e853caa --- /dev/null +++ b/public/organe/PO52250.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52250", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52251.json b/public/organe/PO52251.json new file mode 100644 index 0000000..24949ad --- /dev/null +++ b/public/organe/PO52251.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52251", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52252.json b/public/organe/PO52252.json new file mode 100644 index 0000000..72d5ff3 --- /dev/null +++ b/public/organe/PO52252.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52252", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52253.json b/public/organe/PO52253.json new file mode 100644 index 0000000..66f793d --- /dev/null +++ b/public/organe/PO52253.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52253", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52254.json b/public/organe/PO52254.json new file mode 100644 index 0000000..1220c11 --- /dev/null +++ b/public/organe/PO52254.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52254", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52255.json b/public/organe/PO52255.json new file mode 100644 index 0000000..87b2740 --- /dev/null +++ b/public/organe/PO52255.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52255", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52256.json b/public/organe/PO52256.json new file mode 100644 index 0000000..7c8403c --- /dev/null +++ b/public/organe/PO52256.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52256", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52257.json b/public/organe/PO52257.json new file mode 100644 index 0000000..c462bf2 --- /dev/null +++ b/public/organe/PO52257.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52257", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52258.json b/public/organe/PO52258.json new file mode 100644 index 0000000..b1b2722 --- /dev/null +++ b/public/organe/PO52258.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52258", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52259.json b/public/organe/PO52259.json new file mode 100644 index 0000000..b8c00aa --- /dev/null +++ b/public/organe/PO52259.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52259", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52260.json b/public/organe/PO52260.json new file mode 100644 index 0000000..20b7a5e --- /dev/null +++ b/public/organe/PO52260.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52260", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52261.json b/public/organe/PO52261.json new file mode 100644 index 0000000..36760a5 --- /dev/null +++ b/public/organe/PO52261.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52261", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52262.json b/public/organe/PO52262.json new file mode 100644 index 0000000..7b7e25c --- /dev/null +++ b/public/organe/PO52262.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52262", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52263.json b/public/organe/PO52263.json new file mode 100644 index 0000000..8d8cf27 --- /dev/null +++ b/public/organe/PO52263.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52263", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52264.json b/public/organe/PO52264.json new file mode 100644 index 0000000..54a7738 --- /dev/null +++ b/public/organe/PO52264.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52264", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52265.json b/public/organe/PO52265.json new file mode 100644 index 0000000..c70f860 --- /dev/null +++ b/public/organe/PO52265.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52265", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52266.json b/public/organe/PO52266.json new file mode 100644 index 0000000..f118123 --- /dev/null +++ b/public/organe/PO52266.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52266", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52267.json b/public/organe/PO52267.json new file mode 100644 index 0000000..064b1d9 --- /dev/null +++ b/public/organe/PO52267.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52267", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52268.json b/public/organe/PO52268.json new file mode 100644 index 0000000..aa727b5 --- /dev/null +++ b/public/organe/PO52268.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52268", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52269.json b/public/organe/PO52269.json new file mode 100644 index 0000000..50a1ac7 --- /dev/null +++ b/public/organe/PO52269.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52269", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52270.json b/public/organe/PO52270.json new file mode 100644 index 0000000..24ead33 --- /dev/null +++ b/public/organe/PO52270.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52270", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52271.json b/public/organe/PO52271.json new file mode 100644 index 0000000..2ca5542 --- /dev/null +++ b/public/organe/PO52271.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52271", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52272.json b/public/organe/PO52272.json new file mode 100644 index 0000000..23b5e5c --- /dev/null +++ b/public/organe/PO52272.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52272", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52273.json b/public/organe/PO52273.json new file mode 100644 index 0000000..03029fc --- /dev/null +++ b/public/organe/PO52273.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52273", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52274.json b/public/organe/PO52274.json new file mode 100644 index 0000000..f36d37a --- /dev/null +++ b/public/organe/PO52274.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52274", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52275.json b/public/organe/PO52275.json new file mode 100644 index 0000000..f9af9ac --- /dev/null +++ b/public/organe/PO52275.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52275", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52276.json b/public/organe/PO52276.json new file mode 100644 index 0000000..6b44f25 --- /dev/null +++ b/public/organe/PO52276.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52276", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52277.json b/public/organe/PO52277.json new file mode 100644 index 0000000..41563c1 --- /dev/null +++ b/public/organe/PO52277.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52277", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52278.json b/public/organe/PO52278.json new file mode 100644 index 0000000..9b2ec86 --- /dev/null +++ b/public/organe/PO52278.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52278", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52279.json b/public/organe/PO52279.json new file mode 100644 index 0000000..fb78d8a --- /dev/null +++ b/public/organe/PO52279.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52279", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52280.json b/public/organe/PO52280.json new file mode 100644 index 0000000..f731564 --- /dev/null +++ b/public/organe/PO52280.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52280", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52281.json b/public/organe/PO52281.json new file mode 100644 index 0000000..ee0539a --- /dev/null +++ b/public/organe/PO52281.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52281", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52282.json b/public/organe/PO52282.json new file mode 100644 index 0000000..0e67f0f --- /dev/null +++ b/public/organe/PO52282.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52282", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52283.json b/public/organe/PO52283.json new file mode 100644 index 0000000..6faf553 --- /dev/null +++ b/public/organe/PO52283.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52283", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52284.json b/public/organe/PO52284.json new file mode 100644 index 0000000..cbe531c --- /dev/null +++ b/public/organe/PO52284.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52284", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52285.json b/public/organe/PO52285.json new file mode 100644 index 0000000..83d5b61 --- /dev/null +++ b/public/organe/PO52285.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52285", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52286.json b/public/organe/PO52286.json new file mode 100644 index 0000000..eaf9d8d --- /dev/null +++ b/public/organe/PO52286.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52286", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52287.json b/public/organe/PO52287.json new file mode 100644 index 0000000..2dcad7e --- /dev/null +++ b/public/organe/PO52287.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52287", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52288.json b/public/organe/PO52288.json new file mode 100644 index 0000000..5d641d0 --- /dev/null +++ b/public/organe/PO52288.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52288", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52289.json b/public/organe/PO52289.json new file mode 100644 index 0000000..55582f1 --- /dev/null +++ b/public/organe/PO52289.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52289", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52290.json b/public/organe/PO52290.json new file mode 100644 index 0000000..fab5bb0 --- /dev/null +++ b/public/organe/PO52290.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52290", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52291.json b/public/organe/PO52291.json new file mode 100644 index 0000000..b6616ee --- /dev/null +++ b/public/organe/PO52291.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52291", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52292.json b/public/organe/PO52292.json new file mode 100644 index 0000000..6951d0b --- /dev/null +++ b/public/organe/PO52292.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52292", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52293.json b/public/organe/PO52293.json new file mode 100644 index 0000000..9eb7774 --- /dev/null +++ b/public/organe/PO52293.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52293", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO52294.json b/public/organe/PO52294.json new file mode 100644 index 0000000..e591a3c --- /dev/null +++ b/public/organe/PO52294.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52294", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52295.json b/public/organe/PO52295.json new file mode 100644 index 0000000..5171cd2 --- /dev/null +++ b/public/organe/PO52295.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52295", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52296.json b/public/organe/PO52296.json new file mode 100644 index 0000000..e8f23d2 --- /dev/null +++ b/public/organe/PO52296.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52296", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52297.json b/public/organe/PO52297.json new file mode 100644 index 0000000..0fabc7c --- /dev/null +++ b/public/organe/PO52297.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52297", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52298.json b/public/organe/PO52298.json new file mode 100644 index 0000000..9c9facb --- /dev/null +++ b/public/organe/PO52298.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52298", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52299.json b/public/organe/PO52299.json new file mode 100644 index 0000000..91a95b4 --- /dev/null +++ b/public/organe/PO52299.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52299", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52300.json b/public/organe/PO52300.json new file mode 100644 index 0000000..a2ff03f --- /dev/null +++ b/public/organe/PO52300.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52300", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52301.json b/public/organe/PO52301.json new file mode 100644 index 0000000..861fdc1 --- /dev/null +++ b/public/organe/PO52301.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52301", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52302.json b/public/organe/PO52302.json new file mode 100644 index 0000000..d284310 --- /dev/null +++ b/public/organe/PO52302.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52302", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52303.json b/public/organe/PO52303.json new file mode 100644 index 0000000..c05bad3 --- /dev/null +++ b/public/organe/PO52303.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52303", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52304.json b/public/organe/PO52304.json new file mode 100644 index 0000000..ca60b5c --- /dev/null +++ b/public/organe/PO52304.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52304", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52305.json b/public/organe/PO52305.json new file mode 100644 index 0000000..0de07f4 --- /dev/null +++ b/public/organe/PO52305.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52305", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52306.json b/public/organe/PO52306.json new file mode 100644 index 0000000..17359dd --- /dev/null +++ b/public/organe/PO52306.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52306", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52307.json b/public/organe/PO52307.json new file mode 100644 index 0000000..9d0f3b9 --- /dev/null +++ b/public/organe/PO52307.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52307", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52308.json b/public/organe/PO52308.json new file mode 100644 index 0000000..834a3db --- /dev/null +++ b/public/organe/PO52308.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52308", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52309.json b/public/organe/PO52309.json new file mode 100644 index 0000000..80f1f78 --- /dev/null +++ b/public/organe/PO52309.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52309", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52310.json b/public/organe/PO52310.json new file mode 100644 index 0000000..acdfa59 --- /dev/null +++ b/public/organe/PO52310.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52310", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52311.json b/public/organe/PO52311.json new file mode 100644 index 0000000..e16f887 --- /dev/null +++ b/public/organe/PO52311.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52311", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52312.json b/public/organe/PO52312.json new file mode 100644 index 0000000..1b8d9a3 --- /dev/null +++ b/public/organe/PO52312.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52312", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52313.json b/public/organe/PO52313.json new file mode 100644 index 0000000..c323126 --- /dev/null +++ b/public/organe/PO52313.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52313", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52314.json b/public/organe/PO52314.json new file mode 100644 index 0000000..136f519 --- /dev/null +++ b/public/organe/PO52314.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52314", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52315.json b/public/organe/PO52315.json new file mode 100644 index 0000000..aed9067 --- /dev/null +++ b/public/organe/PO52315.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52315", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52316.json b/public/organe/PO52316.json new file mode 100644 index 0000000..51816f6 --- /dev/null +++ b/public/organe/PO52316.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52316", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52317.json b/public/organe/PO52317.json new file mode 100644 index 0000000..c5d4401 --- /dev/null +++ b/public/organe/PO52317.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52317", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52318.json b/public/organe/PO52318.json new file mode 100644 index 0000000..9e76f01 --- /dev/null +++ b/public/organe/PO52318.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52318", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52319.json b/public/organe/PO52319.json new file mode 100644 index 0000000..f58f0aa --- /dev/null +++ b/public/organe/PO52319.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52319", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52320.json b/public/organe/PO52320.json new file mode 100644 index 0000000..f1b5663 --- /dev/null +++ b/public/organe/PO52320.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52320", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52321.json b/public/organe/PO52321.json new file mode 100644 index 0000000..f4d8ffd --- /dev/null +++ b/public/organe/PO52321.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52321", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52322.json b/public/organe/PO52322.json new file mode 100644 index 0000000..3318e57 --- /dev/null +++ b/public/organe/PO52322.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52322", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52323.json b/public/organe/PO52323.json new file mode 100644 index 0000000..be2bd2f --- /dev/null +++ b/public/organe/PO52323.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52323", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52324.json b/public/organe/PO52324.json new file mode 100644 index 0000000..436714d --- /dev/null +++ b/public/organe/PO52324.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52324", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52325.json b/public/organe/PO52325.json new file mode 100644 index 0000000..f93a447 --- /dev/null +++ b/public/organe/PO52325.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52325", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO52326.json b/public/organe/PO52326.json new file mode 100644 index 0000000..c3f3f69 --- /dev/null +++ b/public/organe/PO52326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52326", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52327.json b/public/organe/PO52327.json new file mode 100644 index 0000000..5c197fc --- /dev/null +++ b/public/organe/PO52327.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52327", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52328.json b/public/organe/PO52328.json new file mode 100644 index 0000000..876ac81 --- /dev/null +++ b/public/organe/PO52328.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52328", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52329.json b/public/organe/PO52329.json new file mode 100644 index 0000000..3ca3ac5 --- /dev/null +++ b/public/organe/PO52329.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52329", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52330.json b/public/organe/PO52330.json new file mode 100644 index 0000000..4242f2e --- /dev/null +++ b/public/organe/PO52330.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52330", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52331.json b/public/organe/PO52331.json new file mode 100644 index 0000000..5ebfd03 --- /dev/null +++ b/public/organe/PO52331.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52331", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52332.json b/public/organe/PO52332.json new file mode 100644 index 0000000..589b315 --- /dev/null +++ b/public/organe/PO52332.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52332", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52333.json b/public/organe/PO52333.json new file mode 100644 index 0000000..d2f21f3 --- /dev/null +++ b/public/organe/PO52333.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52333", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52334.json b/public/organe/PO52334.json new file mode 100644 index 0000000..c393e96 --- /dev/null +++ b/public/organe/PO52334.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52334", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52335.json b/public/organe/PO52335.json new file mode 100644 index 0000000..085b67d --- /dev/null +++ b/public/organe/PO52335.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52335", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52336.json b/public/organe/PO52336.json new file mode 100644 index 0000000..ca21aee --- /dev/null +++ b/public/organe/PO52336.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52336", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52337.json b/public/organe/PO52337.json new file mode 100644 index 0000000..e9fabbb --- /dev/null +++ b/public/organe/PO52337.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52337", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52338.json b/public/organe/PO52338.json new file mode 100644 index 0000000..d4d00d6 --- /dev/null +++ b/public/organe/PO52338.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52338", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52339.json b/public/organe/PO52339.json new file mode 100644 index 0000000..03aec6b --- /dev/null +++ b/public/organe/PO52339.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52339", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52340.json b/public/organe/PO52340.json new file mode 100644 index 0000000..85c0c96 --- /dev/null +++ b/public/organe/PO52340.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52340", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52341.json b/public/organe/PO52341.json new file mode 100644 index 0000000..cd359c1 --- /dev/null +++ b/public/organe/PO52341.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52341", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52342.json b/public/organe/PO52342.json new file mode 100644 index 0000000..10189b2 --- /dev/null +++ b/public/organe/PO52342.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52342", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52343.json b/public/organe/PO52343.json new file mode 100644 index 0000000..7d88935 --- /dev/null +++ b/public/organe/PO52343.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52343", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52344.json b/public/organe/PO52344.json new file mode 100644 index 0000000..20ef3e0 --- /dev/null +++ b/public/organe/PO52344.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52344", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52345.json b/public/organe/PO52345.json new file mode 100644 index 0000000..ccf4990 --- /dev/null +++ b/public/organe/PO52345.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52345", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52346.json b/public/organe/PO52346.json new file mode 100644 index 0000000..a5ec834 --- /dev/null +++ b/public/organe/PO52346.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52346", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52347.json b/public/organe/PO52347.json new file mode 100644 index 0000000..397cc3a --- /dev/null +++ b/public/organe/PO52347.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52347", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52348.json b/public/organe/PO52348.json new file mode 100644 index 0000000..f671463 --- /dev/null +++ b/public/organe/PO52348.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52348", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52349.json b/public/organe/PO52349.json new file mode 100644 index 0000000..952dc58 --- /dev/null +++ b/public/organe/PO52349.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52349", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO52350.json b/public/organe/PO52350.json new file mode 100644 index 0000000..fef1914 --- /dev/null +++ b/public/organe/PO52350.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52350", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52351.json b/public/organe/PO52351.json new file mode 100644 index 0000000..bdb36e2 --- /dev/null +++ b/public/organe/PO52351.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52351", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52352.json b/public/organe/PO52352.json new file mode 100644 index 0000000..cd30ff5 --- /dev/null +++ b/public/organe/PO52352.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52352", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52353.json b/public/organe/PO52353.json new file mode 100644 index 0000000..dc2e2ca --- /dev/null +++ b/public/organe/PO52353.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52353", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52354.json b/public/organe/PO52354.json new file mode 100644 index 0000000..5b7dc88 --- /dev/null +++ b/public/organe/PO52354.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52354", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52355.json b/public/organe/PO52355.json new file mode 100644 index 0000000..2c36037 --- /dev/null +++ b/public/organe/PO52355.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52355", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52357.json b/public/organe/PO52357.json new file mode 100644 index 0000000..ae28b65 --- /dev/null +++ b/public/organe/PO52357.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52357", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52358.json b/public/organe/PO52358.json new file mode 100644 index 0000000..d7dab64 --- /dev/null +++ b/public/organe/PO52358.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52358", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52359.json b/public/organe/PO52359.json new file mode 100644 index 0000000..4b0feae --- /dev/null +++ b/public/organe/PO52359.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52359", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52360.json b/public/organe/PO52360.json new file mode 100644 index 0000000..e7803e8 --- /dev/null +++ b/public/organe/PO52360.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52360", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52361.json b/public/organe/PO52361.json new file mode 100644 index 0000000..3acd767 --- /dev/null +++ b/public/organe/PO52361.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52361", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52362.json b/public/organe/PO52362.json new file mode 100644 index 0000000..a128387 --- /dev/null +++ b/public/organe/PO52362.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52362", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52363.json b/public/organe/PO52363.json new file mode 100644 index 0000000..f52458d --- /dev/null +++ b/public/organe/PO52363.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52363", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52364.json b/public/organe/PO52364.json new file mode 100644 index 0000000..0b3bbfb --- /dev/null +++ b/public/organe/PO52364.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52364", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52365.json b/public/organe/PO52365.json new file mode 100644 index 0000000..a2af9d3 --- /dev/null +++ b/public/organe/PO52365.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52365", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52366.json b/public/organe/PO52366.json new file mode 100644 index 0000000..28c6a05 --- /dev/null +++ b/public/organe/PO52366.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52366", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52367.json b/public/organe/PO52367.json new file mode 100644 index 0000000..a6ea559 --- /dev/null +++ b/public/organe/PO52367.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52367", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52368.json b/public/organe/PO52368.json new file mode 100644 index 0000000..70d5d48 --- /dev/null +++ b/public/organe/PO52368.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52368", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52369.json b/public/organe/PO52369.json new file mode 100644 index 0000000..43625e3 --- /dev/null +++ b/public/organe/PO52369.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52369", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52370.json b/public/organe/PO52370.json new file mode 100644 index 0000000..27c66f0 --- /dev/null +++ b/public/organe/PO52370.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52370", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52371.json b/public/organe/PO52371.json new file mode 100644 index 0000000..13720e2 --- /dev/null +++ b/public/organe/PO52371.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52371", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52372.json b/public/organe/PO52372.json new file mode 100644 index 0000000..fd4ee23 --- /dev/null +++ b/public/organe/PO52372.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52372", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52373.json b/public/organe/PO52373.json new file mode 100644 index 0000000..e26c3c6 --- /dev/null +++ b/public/organe/PO52373.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52373", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52374.json b/public/organe/PO52374.json new file mode 100644 index 0000000..69e0c39 --- /dev/null +++ b/public/organe/PO52374.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52374", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52375.json b/public/organe/PO52375.json new file mode 100644 index 0000000..43752e5 --- /dev/null +++ b/public/organe/PO52375.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52375", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52376.json b/public/organe/PO52376.json new file mode 100644 index 0000000..216360d --- /dev/null +++ b/public/organe/PO52376.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52376", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52377.json b/public/organe/PO52377.json new file mode 100644 index 0000000..0ae70da --- /dev/null +++ b/public/organe/PO52377.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52377", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52378.json b/public/organe/PO52378.json new file mode 100644 index 0000000..bd1458b --- /dev/null +++ b/public/organe/PO52378.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52378", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52379.json b/public/organe/PO52379.json new file mode 100644 index 0000000..90707bb --- /dev/null +++ b/public/organe/PO52379.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52379", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52380.json b/public/organe/PO52380.json new file mode 100644 index 0000000..8547e18 --- /dev/null +++ b/public/organe/PO52380.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52380", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52381.json b/public/organe/PO52381.json new file mode 100644 index 0000000..9dd3d09 --- /dev/null +++ b/public/organe/PO52381.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52381", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52382.json b/public/organe/PO52382.json new file mode 100644 index 0000000..8bcfacb --- /dev/null +++ b/public/organe/PO52382.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52382", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52383.json b/public/organe/PO52383.json new file mode 100644 index 0000000..8fd17ab --- /dev/null +++ b/public/organe/PO52383.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52383", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52384.json b/public/organe/PO52384.json new file mode 100644 index 0000000..ddb785b --- /dev/null +++ b/public/organe/PO52384.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52384", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52385.json b/public/organe/PO52385.json new file mode 100644 index 0000000..36c8378 --- /dev/null +++ b/public/organe/PO52385.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52385", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52386.json b/public/organe/PO52386.json new file mode 100644 index 0000000..3ee61f9 --- /dev/null +++ b/public/organe/PO52386.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52386", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52387.json b/public/organe/PO52387.json new file mode 100644 index 0000000..7c59014 --- /dev/null +++ b/public/organe/PO52387.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52387", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52388.json b/public/organe/PO52388.json new file mode 100644 index 0000000..14c2a01 --- /dev/null +++ b/public/organe/PO52388.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52388", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52389.json b/public/organe/PO52389.json new file mode 100644 index 0000000..e4348e8 --- /dev/null +++ b/public/organe/PO52389.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52389", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52390.json b/public/organe/PO52390.json new file mode 100644 index 0000000..2a370f9 --- /dev/null +++ b/public/organe/PO52390.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52390", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO52391.json b/public/organe/PO52391.json new file mode 100644 index 0000000..f9900ee --- /dev/null +++ b/public/organe/PO52391.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52391", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1936-06-01", "dateAgrement": null, "dateFin": "1942-05-31"}, "organeParent": null, "chambre": null, "regime": "3\u00e8me R\u00e9publique", "legislature": null, "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52392.json b/public/organe/PO52392.json new file mode 100644 index 0000000..ebd7dad --- /dev/null +++ b/public/organe/PO52392.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52392", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1945-11-06", "dateAgrement": null, "dateFin": "1946-06-10"}, "organeParent": null, "chambre": null, "regime": "Assembl\u00e9es nationales constituantes", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52394.json b/public/organe/PO52394.json new file mode 100644 index 0000000..87d4163 --- /dev/null +++ b/public/organe/PO52394.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52394", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1946-11-28", "dateAgrement": null, "dateFin": "1951-07-04"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52395.json b/public/organe/PO52395.json new file mode 100644 index 0000000..14265e9 --- /dev/null +++ b/public/organe/PO52395.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52395", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52398.json b/public/organe/PO52398.json new file mode 100644 index 0000000..f36a06f --- /dev/null +++ b/public/organe/PO52398.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52398", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52399.json b/public/organe/PO52399.json new file mode 100644 index 0000000..fe1b87d --- /dev/null +++ b/public/organe/PO52399.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52399", "codeType": "CIRCONSCRIPTION", "libelle": "47\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b047\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "47", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52400.json b/public/organe/PO52400.json new file mode 100644 index 0000000..1160b6d --- /dev/null +++ b/public/organe/PO52400.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52400", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52401.json b/public/organe/PO52401.json new file mode 100644 index 0000000..9cb2261 --- /dev/null +++ b/public/organe/PO52401.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52401", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52402.json b/public/organe/PO52402.json new file mode 100644 index 0000000..27e4699 --- /dev/null +++ b/public/organe/PO52402.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52402", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52403.json b/public/organe/PO52403.json new file mode 100644 index 0000000..14d339c --- /dev/null +++ b/public/organe/PO52403.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52403", "codeType": "CIRCONSCRIPTION", "libelle": "24\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b024\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "24", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52404.json b/public/organe/PO52404.json new file mode 100644 index 0000000..cc38080 --- /dev/null +++ b/public/organe/PO52404.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52404", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52405.json b/public/organe/PO52405.json new file mode 100644 index 0000000..ae95b70 --- /dev/null +++ b/public/organe/PO52405.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52405", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52406.json b/public/organe/PO52406.json new file mode 100644 index 0000000..609ce99 --- /dev/null +++ b/public/organe/PO52406.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52406", "codeType": "CIRCONSCRIPTION", "libelle": "55\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b055\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "55", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52407.json b/public/organe/PO52407.json new file mode 100644 index 0000000..e0fb299 --- /dev/null +++ b/public/organe/PO52407.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52407", "codeType": "CIRCONSCRIPTION", "libelle": "47\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b047\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "47", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52408.json b/public/organe/PO52408.json new file mode 100644 index 0000000..8ff825e --- /dev/null +++ b/public/organe/PO52408.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52408", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52409.json b/public/organe/PO52409.json new file mode 100644 index 0000000..43909b7 --- /dev/null +++ b/public/organe/PO52409.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52409", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52410.json b/public/organe/PO52410.json new file mode 100644 index 0000000..d9c9547 --- /dev/null +++ b/public/organe/PO52410.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52410", "codeType": "CIRCONSCRIPTION", "libelle": "46\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b046\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "46", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52411.json b/public/organe/PO52411.json new file mode 100644 index 0000000..072be4f --- /dev/null +++ b/public/organe/PO52411.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52411", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52412.json b/public/organe/PO52412.json new file mode 100644 index 0000000..3b9761e --- /dev/null +++ b/public/organe/PO52412.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52412", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52413.json b/public/organe/PO52413.json new file mode 100644 index 0000000..7406cf1 --- /dev/null +++ b/public/organe/PO52413.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52413", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52414.json b/public/organe/PO52414.json new file mode 100644 index 0000000..6c431bc --- /dev/null +++ b/public/organe/PO52414.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52414", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52415.json b/public/organe/PO52415.json new file mode 100644 index 0000000..b562167 --- /dev/null +++ b/public/organe/PO52415.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52415", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52416.json b/public/organe/PO52416.json new file mode 100644 index 0000000..697e74b --- /dev/null +++ b/public/organe/PO52416.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52416", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52417.json b/public/organe/PO52417.json new file mode 100644 index 0000000..e8f51fc --- /dev/null +++ b/public/organe/PO52417.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52417", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52418.json b/public/organe/PO52418.json new file mode 100644 index 0000000..40194c6 --- /dev/null +++ b/public/organe/PO52418.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52418", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52419.json b/public/organe/PO52419.json new file mode 100644 index 0000000..2216381 --- /dev/null +++ b/public/organe/PO52419.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52419", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52420.json b/public/organe/PO52420.json new file mode 100644 index 0000000..d04231b --- /dev/null +++ b/public/organe/PO52420.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52420", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52421.json b/public/organe/PO52421.json new file mode 100644 index 0000000..599d51c --- /dev/null +++ b/public/organe/PO52421.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52421", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52422.json b/public/organe/PO52422.json new file mode 100644 index 0000000..6b7131d --- /dev/null +++ b/public/organe/PO52422.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52422", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52423.json b/public/organe/PO52423.json new file mode 100644 index 0000000..62f51fa --- /dev/null +++ b/public/organe/PO52423.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52423", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52424.json b/public/organe/PO52424.json new file mode 100644 index 0000000..a4e3e54 --- /dev/null +++ b/public/organe/PO52424.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52424", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52425.json b/public/organe/PO52425.json new file mode 100644 index 0000000..c317315 --- /dev/null +++ b/public/organe/PO52425.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52425", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52426.json b/public/organe/PO52426.json new file mode 100644 index 0000000..ad5fcd7 --- /dev/null +++ b/public/organe/PO52426.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52426", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52427.json b/public/organe/PO52427.json new file mode 100644 index 0000000..8ca071f --- /dev/null +++ b/public/organe/PO52427.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52427", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52428.json b/public/organe/PO52428.json new file mode 100644 index 0000000..a6ee21f --- /dev/null +++ b/public/organe/PO52428.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52428", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52429.json b/public/organe/PO52429.json new file mode 100644 index 0000000..8535c79 --- /dev/null +++ b/public/organe/PO52429.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52429", "codeType": "CIRCONSCRIPTION", "libelle": "24\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b024\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "24", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52430.json b/public/organe/PO52430.json new file mode 100644 index 0000000..8662865 --- /dev/null +++ b/public/organe/PO52430.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52430", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52431.json b/public/organe/PO52431.json new file mode 100644 index 0000000..4759c1b --- /dev/null +++ b/public/organe/PO52431.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52431", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52432.json b/public/organe/PO52432.json new file mode 100644 index 0000000..797beab --- /dev/null +++ b/public/organe/PO52432.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52432", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52433.json b/public/organe/PO52433.json new file mode 100644 index 0000000..92bbaa6 --- /dev/null +++ b/public/organe/PO52433.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52433", "codeType": "CIRCONSCRIPTION", "libelle": "28\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b028\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "28", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52434.json b/public/organe/PO52434.json new file mode 100644 index 0000000..d8f6095 --- /dev/null +++ b/public/organe/PO52434.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52434", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52435.json b/public/organe/PO52435.json new file mode 100644 index 0000000..13aa487 --- /dev/null +++ b/public/organe/PO52435.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52435", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52436.json b/public/organe/PO52436.json new file mode 100644 index 0000000..f793377 --- /dev/null +++ b/public/organe/PO52436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52436", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52437.json b/public/organe/PO52437.json new file mode 100644 index 0000000..e8550c8 --- /dev/null +++ b/public/organe/PO52437.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52437", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52438.json b/public/organe/PO52438.json new file mode 100644 index 0000000..723ea3f --- /dev/null +++ b/public/organe/PO52438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52438", "codeType": "CIRCONSCRIPTION", "libelle": "24\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b024\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "24", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52439.json b/public/organe/PO52439.json new file mode 100644 index 0000000..e242527 --- /dev/null +++ b/public/organe/PO52439.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52439", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52440.json b/public/organe/PO52440.json new file mode 100644 index 0000000..a63ecef --- /dev/null +++ b/public/organe/PO52440.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52440", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52441.json b/public/organe/PO52441.json new file mode 100644 index 0000000..513bdd8 --- /dev/null +++ b/public/organe/PO52441.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52441", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52442.json b/public/organe/PO52442.json new file mode 100644 index 0000000..5f6d036 --- /dev/null +++ b/public/organe/PO52442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52442", "codeType": "CIRCONSCRIPTION", "libelle": "28\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b028\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "28", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52443.json b/public/organe/PO52443.json new file mode 100644 index 0000000..1f717b1 --- /dev/null +++ b/public/organe/PO52443.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52443", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52444.json b/public/organe/PO52444.json new file mode 100644 index 0000000..4f9ec30 --- /dev/null +++ b/public/organe/PO52444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52444", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52445.json b/public/organe/PO52445.json new file mode 100644 index 0000000..3ac648c --- /dev/null +++ b/public/organe/PO52445.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52445", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52446.json b/public/organe/PO52446.json new file mode 100644 index 0000000..768d016 --- /dev/null +++ b/public/organe/PO52446.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52446", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52447.json b/public/organe/PO52447.json new file mode 100644 index 0000000..f202436 --- /dev/null +++ b/public/organe/PO52447.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52447", "codeType": "CIRCONSCRIPTION", "libelle": "27\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b027\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "27", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52448.json b/public/organe/PO52448.json new file mode 100644 index 0000000..c81deaa --- /dev/null +++ b/public/organe/PO52448.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52448", "codeType": "CIRCONSCRIPTION", "libelle": "30\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b030\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "30", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52449.json b/public/organe/PO52449.json new file mode 100644 index 0000000..dd66871 --- /dev/null +++ b/public/organe/PO52449.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52449", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52450.json b/public/organe/PO52450.json new file mode 100644 index 0000000..feaedc9 --- /dev/null +++ b/public/organe/PO52450.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52450", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52451.json b/public/organe/PO52451.json new file mode 100644 index 0000000..939f30d --- /dev/null +++ b/public/organe/PO52451.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52451", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52452.json b/public/organe/PO52452.json new file mode 100644 index 0000000..f487084 --- /dev/null +++ b/public/organe/PO52452.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52452", "codeType": "CIRCONSCRIPTION", "libelle": "23\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b023\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "23", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52453.json b/public/organe/PO52453.json new file mode 100644 index 0000000..d1b5495 --- /dev/null +++ b/public/organe/PO52453.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52453", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52454.json b/public/organe/PO52454.json new file mode 100644 index 0000000..4b23f25 --- /dev/null +++ b/public/organe/PO52454.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52454", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52455.json b/public/organe/PO52455.json new file mode 100644 index 0000000..bf8df92 --- /dev/null +++ b/public/organe/PO52455.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52455", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52456.json b/public/organe/PO52456.json new file mode 100644 index 0000000..89db2c5 --- /dev/null +++ b/public/organe/PO52456.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52456", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52457.json b/public/organe/PO52457.json new file mode 100644 index 0000000..c3d1eed --- /dev/null +++ b/public/organe/PO52457.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52457", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52458.json b/public/organe/PO52458.json new file mode 100644 index 0000000..5814d12 --- /dev/null +++ b/public/organe/PO52458.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52458", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52460.json b/public/organe/PO52460.json new file mode 100644 index 0000000..800f0e1 --- /dev/null +++ b/public/organe/PO52460.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52460", "codeType": "CIRCONSCRIPTION", "libelle": "24\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b024\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "24", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52461.json b/public/organe/PO52461.json new file mode 100644 index 0000000..a713a62 --- /dev/null +++ b/public/organe/PO52461.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52461", "codeType": "CIRCONSCRIPTION", "libelle": "31\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b031\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "31", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52462.json b/public/organe/PO52462.json new file mode 100644 index 0000000..614cba9 --- /dev/null +++ b/public/organe/PO52462.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52462", "codeType": "CIRCONSCRIPTION", "libelle": "30\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b030\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "30", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52463.json b/public/organe/PO52463.json new file mode 100644 index 0000000..943509f --- /dev/null +++ b/public/organe/PO52463.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52463", "codeType": "CIRCONSCRIPTION", "libelle": "29\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b029\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "29", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52464.json b/public/organe/PO52464.json new file mode 100644 index 0000000..713767c --- /dev/null +++ b/public/organe/PO52464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52464", "codeType": "CIRCONSCRIPTION", "libelle": "28\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b028\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "28", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52465.json b/public/organe/PO52465.json new file mode 100644 index 0000000..0cb98e2 --- /dev/null +++ b/public/organe/PO52465.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52465", "codeType": "CIRCONSCRIPTION", "libelle": "27\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b027\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "27", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52466.json b/public/organe/PO52466.json new file mode 100644 index 0000000..bd63812 --- /dev/null +++ b/public/organe/PO52466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52466", "codeType": "CIRCONSCRIPTION", "libelle": "25\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b025\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "25", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52467.json b/public/organe/PO52467.json new file mode 100644 index 0000000..521593a --- /dev/null +++ b/public/organe/PO52467.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52467", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52468.json b/public/organe/PO52468.json new file mode 100644 index 0000000..7c8fb3d --- /dev/null +++ b/public/organe/PO52468.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52468", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52469.json b/public/organe/PO52469.json new file mode 100644 index 0000000..1b76d20 --- /dev/null +++ b/public/organe/PO52469.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52469", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52470.json b/public/organe/PO52470.json new file mode 100644 index 0000000..6ad3658 --- /dev/null +++ b/public/organe/PO52470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52470", "codeType": "CIRCONSCRIPTION", "libelle": "26\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b026\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "26", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52471.json b/public/organe/PO52471.json new file mode 100644 index 0000000..0a427bb --- /dev/null +++ b/public/organe/PO52471.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52471", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52472.json b/public/organe/PO52472.json new file mode 100644 index 0000000..512ccb0 --- /dev/null +++ b/public/organe/PO52472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52472", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52473.json b/public/organe/PO52473.json new file mode 100644 index 0000000..ce7b6c5 --- /dev/null +++ b/public/organe/PO52473.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52473", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52474.json b/public/organe/PO52474.json new file mode 100644 index 0000000..4a3b0fd --- /dev/null +++ b/public/organe/PO52474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52474", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52475.json b/public/organe/PO52475.json new file mode 100644 index 0000000..cbe9482 --- /dev/null +++ b/public/organe/PO52475.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52475", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52476.json b/public/organe/PO52476.json new file mode 100644 index 0000000..2cb3f93 --- /dev/null +++ b/public/organe/PO52476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52476", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52477.json b/public/organe/PO52477.json new file mode 100644 index 0000000..c8d9535 --- /dev/null +++ b/public/organe/PO52477.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52477", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52478.json b/public/organe/PO52478.json new file mode 100644 index 0000000..1550dda --- /dev/null +++ b/public/organe/PO52478.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52478", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52479.json b/public/organe/PO52479.json new file mode 100644 index 0000000..182f1d1 --- /dev/null +++ b/public/organe/PO52479.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52479", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52480.json b/public/organe/PO52480.json new file mode 100644 index 0000000..809e39f --- /dev/null +++ b/public/organe/PO52480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52480", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52481.json b/public/organe/PO52481.json new file mode 100644 index 0000000..62ebf9d --- /dev/null +++ b/public/organe/PO52481.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52481", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52482.json b/public/organe/PO52482.json new file mode 100644 index 0000000..703bb08 --- /dev/null +++ b/public/organe/PO52482.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52482", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52483.json b/public/organe/PO52483.json new file mode 100644 index 0000000..5abd1cc --- /dev/null +++ b/public/organe/PO52483.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52483", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52484.json b/public/organe/PO52484.json new file mode 100644 index 0000000..7d6a720 --- /dev/null +++ b/public/organe/PO52484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52484", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52485.json b/public/organe/PO52485.json new file mode 100644 index 0000000..0a04e94 --- /dev/null +++ b/public/organe/PO52485.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52485", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52486.json b/public/organe/PO52486.json new file mode 100644 index 0000000..4cf823c --- /dev/null +++ b/public/organe/PO52486.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52486", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52487.json b/public/organe/PO52487.json new file mode 100644 index 0000000..665fec4 --- /dev/null +++ b/public/organe/PO52487.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52487", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52488.json b/public/organe/PO52488.json new file mode 100644 index 0000000..47d2871 --- /dev/null +++ b/public/organe/PO52488.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52488", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52489.json b/public/organe/PO52489.json new file mode 100644 index 0000000..68c2023 --- /dev/null +++ b/public/organe/PO52489.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52489", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52490.json b/public/organe/PO52490.json new file mode 100644 index 0000000..c295c0e --- /dev/null +++ b/public/organe/PO52490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52490", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52491.json b/public/organe/PO52491.json new file mode 100644 index 0000000..b70ec5e --- /dev/null +++ b/public/organe/PO52491.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52491", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52492.json b/public/organe/PO52492.json new file mode 100644 index 0000000..caf7cb4 --- /dev/null +++ b/public/organe/PO52492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52492", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52493.json b/public/organe/PO52493.json new file mode 100644 index 0000000..21ce99a --- /dev/null +++ b/public/organe/PO52493.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52493", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52494.json b/public/organe/PO52494.json new file mode 100644 index 0000000..00c9042 --- /dev/null +++ b/public/organe/PO52494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52494", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52495.json b/public/organe/PO52495.json new file mode 100644 index 0000000..910bc91 --- /dev/null +++ b/public/organe/PO52495.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52495", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52496.json b/public/organe/PO52496.json new file mode 100644 index 0000000..fc0b4ef --- /dev/null +++ b/public/organe/PO52496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52496", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52497.json b/public/organe/PO52497.json new file mode 100644 index 0000000..f2f4a94 --- /dev/null +++ b/public/organe/PO52497.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52497", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52498.json b/public/organe/PO52498.json new file mode 100644 index 0000000..d35063a --- /dev/null +++ b/public/organe/PO52498.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52498", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52499.json b/public/organe/PO52499.json new file mode 100644 index 0000000..4c77cc4 --- /dev/null +++ b/public/organe/PO52499.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52499", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52500.json b/public/organe/PO52500.json new file mode 100644 index 0000000..1f08873 --- /dev/null +++ b/public/organe/PO52500.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52500", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52501.json b/public/organe/PO52501.json new file mode 100644 index 0000000..8ae6231 --- /dev/null +++ b/public/organe/PO52501.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52501", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52502.json b/public/organe/PO52502.json new file mode 100644 index 0000000..261c286 --- /dev/null +++ b/public/organe/PO52502.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52502", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52503.json b/public/organe/PO52503.json new file mode 100644 index 0000000..45647c3 --- /dev/null +++ b/public/organe/PO52503.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52503", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52504.json b/public/organe/PO52504.json new file mode 100644 index 0000000..821771e --- /dev/null +++ b/public/organe/PO52504.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52504", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52505.json b/public/organe/PO52505.json new file mode 100644 index 0000000..3ecdbe7 --- /dev/null +++ b/public/organe/PO52505.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52505", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52506.json b/public/organe/PO52506.json new file mode 100644 index 0000000..682f45f --- /dev/null +++ b/public/organe/PO52506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52506", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52507.json b/public/organe/PO52507.json new file mode 100644 index 0000000..0e6b859 --- /dev/null +++ b/public/organe/PO52507.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52507", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52508.json b/public/organe/PO52508.json new file mode 100644 index 0000000..832fba5 --- /dev/null +++ b/public/organe/PO52508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52508", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52509.json b/public/organe/PO52509.json new file mode 100644 index 0000000..bfd18f4 --- /dev/null +++ b/public/organe/PO52509.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52509", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52510.json b/public/organe/PO52510.json new file mode 100644 index 0000000..12a4409 --- /dev/null +++ b/public/organe/PO52510.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52510", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52511.json b/public/organe/PO52511.json new file mode 100644 index 0000000..1e0e90d --- /dev/null +++ b/public/organe/PO52511.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52511", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52512.json b/public/organe/PO52512.json new file mode 100644 index 0000000..bec9dc8 --- /dev/null +++ b/public/organe/PO52512.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52512", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52513.json b/public/organe/PO52513.json new file mode 100644 index 0000000..6208d92 --- /dev/null +++ b/public/organe/PO52513.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52513", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52514.json b/public/organe/PO52514.json new file mode 100644 index 0000000..80ec422 --- /dev/null +++ b/public/organe/PO52514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52514", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52515.json b/public/organe/PO52515.json new file mode 100644 index 0000000..038b6fe --- /dev/null +++ b/public/organe/PO52515.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52515", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52516.json b/public/organe/PO52516.json new file mode 100644 index 0000000..fbbb153 --- /dev/null +++ b/public/organe/PO52516.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52516", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52517.json b/public/organe/PO52517.json new file mode 100644 index 0000000..138d1aa --- /dev/null +++ b/public/organe/PO52517.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52517", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52518.json b/public/organe/PO52518.json new file mode 100644 index 0000000..ea2ca49 --- /dev/null +++ b/public/organe/PO52518.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52518", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52519.json b/public/organe/PO52519.json new file mode 100644 index 0000000..6c0fc96 --- /dev/null +++ b/public/organe/PO52519.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52519", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52520.json b/public/organe/PO52520.json new file mode 100644 index 0000000..1bf033e --- /dev/null +++ b/public/organe/PO52520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52520", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52521.json b/public/organe/PO52521.json new file mode 100644 index 0000000..9b319c3 --- /dev/null +++ b/public/organe/PO52521.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52521", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52522.json b/public/organe/PO52522.json new file mode 100644 index 0000000..0d9fcea --- /dev/null +++ b/public/organe/PO52522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52522", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52523.json b/public/organe/PO52523.json new file mode 100644 index 0000000..bcc6017 --- /dev/null +++ b/public/organe/PO52523.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52523", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52524.json b/public/organe/PO52524.json new file mode 100644 index 0000000..81375ee --- /dev/null +++ b/public/organe/PO52524.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52524", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52525.json b/public/organe/PO52525.json new file mode 100644 index 0000000..b7ff2ac --- /dev/null +++ b/public/organe/PO52525.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52525", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52526.json b/public/organe/PO52526.json new file mode 100644 index 0000000..c7b175b --- /dev/null +++ b/public/organe/PO52526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52526", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52527.json b/public/organe/PO52527.json new file mode 100644 index 0000000..29ee864 --- /dev/null +++ b/public/organe/PO52527.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52527", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52528.json b/public/organe/PO52528.json new file mode 100644 index 0000000..a504baa --- /dev/null +++ b/public/organe/PO52528.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52528", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52529.json b/public/organe/PO52529.json new file mode 100644 index 0000000..906bc25 --- /dev/null +++ b/public/organe/PO52529.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52529", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52530.json b/public/organe/PO52530.json new file mode 100644 index 0000000..dcafac5 --- /dev/null +++ b/public/organe/PO52530.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52530", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52531.json b/public/organe/PO52531.json new file mode 100644 index 0000000..c5a0aaa --- /dev/null +++ b/public/organe/PO52531.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52531", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52532.json b/public/organe/PO52532.json new file mode 100644 index 0000000..1dd8d16 --- /dev/null +++ b/public/organe/PO52532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52532", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52533.json b/public/organe/PO52533.json new file mode 100644 index 0000000..127b288 --- /dev/null +++ b/public/organe/PO52533.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52533", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52534.json b/public/organe/PO52534.json new file mode 100644 index 0000000..d67b4e2 --- /dev/null +++ b/public/organe/PO52534.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52534", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52535.json b/public/organe/PO52535.json new file mode 100644 index 0000000..0c6a403 --- /dev/null +++ b/public/organe/PO52535.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52535", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52536.json b/public/organe/PO52536.json new file mode 100644 index 0000000..0b92f1a --- /dev/null +++ b/public/organe/PO52536.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52536", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52537.json b/public/organe/PO52537.json new file mode 100644 index 0000000..583ae69 --- /dev/null +++ b/public/organe/PO52537.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52537", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52538.json b/public/organe/PO52538.json new file mode 100644 index 0000000..b079b87 --- /dev/null +++ b/public/organe/PO52538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52538", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52539.json b/public/organe/PO52539.json new file mode 100644 index 0000000..6dd110d --- /dev/null +++ b/public/organe/PO52539.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52539", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52540.json b/public/organe/PO52540.json new file mode 100644 index 0000000..5ed329a --- /dev/null +++ b/public/organe/PO52540.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52540", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52541.json b/public/organe/PO52541.json new file mode 100644 index 0000000..bef4250 --- /dev/null +++ b/public/organe/PO52541.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52541", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52542.json b/public/organe/PO52542.json new file mode 100644 index 0000000..3ef9a1e --- /dev/null +++ b/public/organe/PO52542.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52542", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52543.json b/public/organe/PO52543.json new file mode 100644 index 0000000..076923a --- /dev/null +++ b/public/organe/PO52543.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52543", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52544.json b/public/organe/PO52544.json new file mode 100644 index 0000000..f695fdc --- /dev/null +++ b/public/organe/PO52544.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52544", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52545.json b/public/organe/PO52545.json new file mode 100644 index 0000000..69b303c --- /dev/null +++ b/public/organe/PO52545.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52545", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52546.json b/public/organe/PO52546.json new file mode 100644 index 0000000..046dfee --- /dev/null +++ b/public/organe/PO52546.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52546", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO52547.json b/public/organe/PO52547.json new file mode 100644 index 0000000..e427f0c --- /dev/null +++ b/public/organe/PO52547.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52547", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52548.json b/public/organe/PO52548.json new file mode 100644 index 0000000..7d44a83 --- /dev/null +++ b/public/organe/PO52548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52548", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52549.json b/public/organe/PO52549.json new file mode 100644 index 0000000..833cdea --- /dev/null +++ b/public/organe/PO52549.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52549", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52550.json b/public/organe/PO52550.json new file mode 100644 index 0000000..3acd3c9 --- /dev/null +++ b/public/organe/PO52550.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52550", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52551.json b/public/organe/PO52551.json new file mode 100644 index 0000000..a38a9af --- /dev/null +++ b/public/organe/PO52551.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52551", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52552.json b/public/organe/PO52552.json new file mode 100644 index 0000000..7d144ab --- /dev/null +++ b/public/organe/PO52552.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52552", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52553.json b/public/organe/PO52553.json new file mode 100644 index 0000000..95b8cbb --- /dev/null +++ b/public/organe/PO52553.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52553", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52554.json b/public/organe/PO52554.json new file mode 100644 index 0000000..f0bceba --- /dev/null +++ b/public/organe/PO52554.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52554", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52555.json b/public/organe/PO52555.json new file mode 100644 index 0000000..e66a1c8 --- /dev/null +++ b/public/organe/PO52555.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52555", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52556.json b/public/organe/PO52556.json new file mode 100644 index 0000000..7fb1319 --- /dev/null +++ b/public/organe/PO52556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52556", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52557.json b/public/organe/PO52557.json new file mode 100644 index 0000000..0725ce5 --- /dev/null +++ b/public/organe/PO52557.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52557", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52558.json b/public/organe/PO52558.json new file mode 100644 index 0000000..ab021fd --- /dev/null +++ b/public/organe/PO52558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52558", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52559.json b/public/organe/PO52559.json new file mode 100644 index 0000000..df090e0 --- /dev/null +++ b/public/organe/PO52559.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52559", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52560.json b/public/organe/PO52560.json new file mode 100644 index 0000000..5e98c7f --- /dev/null +++ b/public/organe/PO52560.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52560", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52561.json b/public/organe/PO52561.json new file mode 100644 index 0000000..1cf442b --- /dev/null +++ b/public/organe/PO52561.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52561", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52562.json b/public/organe/PO52562.json new file mode 100644 index 0000000..1e2d425 --- /dev/null +++ b/public/organe/PO52562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52562", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52563.json b/public/organe/PO52563.json new file mode 100644 index 0000000..2a865f2 --- /dev/null +++ b/public/organe/PO52563.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52563", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52564.json b/public/organe/PO52564.json new file mode 100644 index 0000000..d670400 --- /dev/null +++ b/public/organe/PO52564.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52564", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52565.json b/public/organe/PO52565.json new file mode 100644 index 0000000..c985a04 --- /dev/null +++ b/public/organe/PO52565.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52565", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52566.json b/public/organe/PO52566.json new file mode 100644 index 0000000..7996339 --- /dev/null +++ b/public/organe/PO52566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52566", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52567.json b/public/organe/PO52567.json new file mode 100644 index 0000000..5a61572 --- /dev/null +++ b/public/organe/PO52567.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52567", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52568.json b/public/organe/PO52568.json new file mode 100644 index 0000000..a89c622 --- /dev/null +++ b/public/organe/PO52568.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52568", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52569.json b/public/organe/PO52569.json new file mode 100644 index 0000000..87c3a5a --- /dev/null +++ b/public/organe/PO52569.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52569", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52570.json b/public/organe/PO52570.json new file mode 100644 index 0000000..8f870f8 --- /dev/null +++ b/public/organe/PO52570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52570", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52571.json b/public/organe/PO52571.json new file mode 100644 index 0000000..16d0303 --- /dev/null +++ b/public/organe/PO52571.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52571", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52572.json b/public/organe/PO52572.json new file mode 100644 index 0000000..b686169 --- /dev/null +++ b/public/organe/PO52572.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52572", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52573.json b/public/organe/PO52573.json new file mode 100644 index 0000000..82e965b --- /dev/null +++ b/public/organe/PO52573.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52573", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52574.json b/public/organe/PO52574.json new file mode 100644 index 0000000..d1ca003 --- /dev/null +++ b/public/organe/PO52574.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52574", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52575.json b/public/organe/PO52575.json new file mode 100644 index 0000000..1e1943a --- /dev/null +++ b/public/organe/PO52575.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52575", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52576.json b/public/organe/PO52576.json new file mode 100644 index 0000000..35df12b --- /dev/null +++ b/public/organe/PO52576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52576", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52577.json b/public/organe/PO52577.json new file mode 100644 index 0000000..4dc6977 --- /dev/null +++ b/public/organe/PO52577.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52577", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52578.json b/public/organe/PO52578.json new file mode 100644 index 0000000..4995cbc --- /dev/null +++ b/public/organe/PO52578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52578", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52579.json b/public/organe/PO52579.json new file mode 100644 index 0000000..a2b4e6b --- /dev/null +++ b/public/organe/PO52579.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52579", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52580.json b/public/organe/PO52580.json new file mode 100644 index 0000000..17dc0ce --- /dev/null +++ b/public/organe/PO52580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52580", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52581.json b/public/organe/PO52581.json new file mode 100644 index 0000000..f8d5a56 --- /dev/null +++ b/public/organe/PO52581.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52581", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52582.json b/public/organe/PO52582.json new file mode 100644 index 0000000..07b335f --- /dev/null +++ b/public/organe/PO52582.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52582", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52583.json b/public/organe/PO52583.json new file mode 100644 index 0000000..b3a5f06 --- /dev/null +++ b/public/organe/PO52583.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52583", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52584.json b/public/organe/PO52584.json new file mode 100644 index 0000000..56ab12b --- /dev/null +++ b/public/organe/PO52584.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52584", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52585.json b/public/organe/PO52585.json new file mode 100644 index 0000000..68c1c74 --- /dev/null +++ b/public/organe/PO52585.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52585", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52586.json b/public/organe/PO52586.json new file mode 100644 index 0000000..789d0e7 --- /dev/null +++ b/public/organe/PO52586.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52586", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52587.json b/public/organe/PO52587.json new file mode 100644 index 0000000..488d48f --- /dev/null +++ b/public/organe/PO52587.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52587", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52588.json b/public/organe/PO52588.json new file mode 100644 index 0000000..128de0e --- /dev/null +++ b/public/organe/PO52588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52588", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52589.json b/public/organe/PO52589.json new file mode 100644 index 0000000..3eb4c20 --- /dev/null +++ b/public/organe/PO52589.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52589", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52590.json b/public/organe/PO52590.json new file mode 100644 index 0000000..40418db --- /dev/null +++ b/public/organe/PO52590.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52590", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52591.json b/public/organe/PO52591.json new file mode 100644 index 0000000..a249e48 --- /dev/null +++ b/public/organe/PO52591.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52591", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52592.json b/public/organe/PO52592.json new file mode 100644 index 0000000..9178e6d --- /dev/null +++ b/public/organe/PO52592.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52592", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52593.json b/public/organe/PO52593.json new file mode 100644 index 0000000..2082778 --- /dev/null +++ b/public/organe/PO52593.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52593", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52594.json b/public/organe/PO52594.json new file mode 100644 index 0000000..e427ea3 --- /dev/null +++ b/public/organe/PO52594.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52594", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52595.json b/public/organe/PO52595.json new file mode 100644 index 0000000..c56d90e --- /dev/null +++ b/public/organe/PO52595.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52595", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52596.json b/public/organe/PO52596.json new file mode 100644 index 0000000..fa193da --- /dev/null +++ b/public/organe/PO52596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52596", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52597.json b/public/organe/PO52597.json new file mode 100644 index 0000000..cdd28c4 --- /dev/null +++ b/public/organe/PO52597.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52597", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52598.json b/public/organe/PO52598.json new file mode 100644 index 0000000..2331449 --- /dev/null +++ b/public/organe/PO52598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52598", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52599.json b/public/organe/PO52599.json new file mode 100644 index 0000000..1b4e76e --- /dev/null +++ b/public/organe/PO52599.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52599", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52600.json b/public/organe/PO52600.json new file mode 100644 index 0000000..828f7dd --- /dev/null +++ b/public/organe/PO52600.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52600", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52601.json b/public/organe/PO52601.json new file mode 100644 index 0000000..dd63558 --- /dev/null +++ b/public/organe/PO52601.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52601", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52602.json b/public/organe/PO52602.json new file mode 100644 index 0000000..9775a68 --- /dev/null +++ b/public/organe/PO52602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52602", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52603.json b/public/organe/PO52603.json new file mode 100644 index 0000000..f427ec0 --- /dev/null +++ b/public/organe/PO52603.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52603", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52604.json b/public/organe/PO52604.json new file mode 100644 index 0000000..c09a63e --- /dev/null +++ b/public/organe/PO52604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52604", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52605.json b/public/organe/PO52605.json new file mode 100644 index 0000000..fcbf6be --- /dev/null +++ b/public/organe/PO52605.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52605", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52606.json b/public/organe/PO52606.json new file mode 100644 index 0000000..ee178e7 --- /dev/null +++ b/public/organe/PO52606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52606", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52607.json b/public/organe/PO52607.json new file mode 100644 index 0000000..1daff2b --- /dev/null +++ b/public/organe/PO52607.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52607", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52608.json b/public/organe/PO52608.json new file mode 100644 index 0000000..a95a5f2 --- /dev/null +++ b/public/organe/PO52608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52608", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52609.json b/public/organe/PO52609.json new file mode 100644 index 0000000..4c1b455 --- /dev/null +++ b/public/organe/PO52609.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52609", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52610.json b/public/organe/PO52610.json new file mode 100644 index 0000000..060e615 --- /dev/null +++ b/public/organe/PO52610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52610", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52611.json b/public/organe/PO52611.json new file mode 100644 index 0000000..fc73476 --- /dev/null +++ b/public/organe/PO52611.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52611", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52612.json b/public/organe/PO52612.json new file mode 100644 index 0000000..4d3be06 --- /dev/null +++ b/public/organe/PO52612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52612", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52613.json b/public/organe/PO52613.json new file mode 100644 index 0000000..80a4230 --- /dev/null +++ b/public/organe/PO52613.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52613", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO52614.json b/public/organe/PO52614.json new file mode 100644 index 0000000..3e9b582 --- /dev/null +++ b/public/organe/PO52614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52614", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52615.json b/public/organe/PO52615.json new file mode 100644 index 0000000..abcdc0f --- /dev/null +++ b/public/organe/PO52615.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52615", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52616.json b/public/organe/PO52616.json new file mode 100644 index 0000000..321d2f8 --- /dev/null +++ b/public/organe/PO52616.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52616", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52617.json b/public/organe/PO52617.json new file mode 100644 index 0000000..fe8d336 --- /dev/null +++ b/public/organe/PO52617.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52617", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52618.json b/public/organe/PO52618.json new file mode 100644 index 0000000..258afc8 --- /dev/null +++ b/public/organe/PO52618.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52618", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52619.json b/public/organe/PO52619.json new file mode 100644 index 0000000..209f15c --- /dev/null +++ b/public/organe/PO52619.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52619", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52620.json b/public/organe/PO52620.json new file mode 100644 index 0000000..490eeea --- /dev/null +++ b/public/organe/PO52620.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52620", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52621.json b/public/organe/PO52621.json new file mode 100644 index 0000000..cf0b3a4 --- /dev/null +++ b/public/organe/PO52621.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52621", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52622.json b/public/organe/PO52622.json new file mode 100644 index 0000000..b00f783 --- /dev/null +++ b/public/organe/PO52622.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52622", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52623.json b/public/organe/PO52623.json new file mode 100644 index 0000000..62a3bcd --- /dev/null +++ b/public/organe/PO52623.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52623", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52624.json b/public/organe/PO52624.json new file mode 100644 index 0000000..2fe5b92 --- /dev/null +++ b/public/organe/PO52624.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52624", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52625.json b/public/organe/PO52625.json new file mode 100644 index 0000000..a5e37aa --- /dev/null +++ b/public/organe/PO52625.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52625", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52626.json b/public/organe/PO52626.json new file mode 100644 index 0000000..2d48819 --- /dev/null +++ b/public/organe/PO52626.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52626", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52627.json b/public/organe/PO52627.json new file mode 100644 index 0000000..9a1d9c7 --- /dev/null +++ b/public/organe/PO52627.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52627", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52628.json b/public/organe/PO52628.json new file mode 100644 index 0000000..758e560 --- /dev/null +++ b/public/organe/PO52628.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52628", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52629.json b/public/organe/PO52629.json new file mode 100644 index 0000000..6b375aa --- /dev/null +++ b/public/organe/PO52629.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52629", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52630.json b/public/organe/PO52630.json new file mode 100644 index 0000000..dfbfec1 --- /dev/null +++ b/public/organe/PO52630.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52630", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52631.json b/public/organe/PO52631.json new file mode 100644 index 0000000..1544f83 --- /dev/null +++ b/public/organe/PO52631.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52631", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52632.json b/public/organe/PO52632.json new file mode 100644 index 0000000..870723a --- /dev/null +++ b/public/organe/PO52632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52632", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52633.json b/public/organe/PO52633.json new file mode 100644 index 0000000..26fec28 --- /dev/null +++ b/public/organe/PO52633.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52633", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52634.json b/public/organe/PO52634.json new file mode 100644 index 0000000..c6d6780 --- /dev/null +++ b/public/organe/PO52634.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52634", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52635.json b/public/organe/PO52635.json new file mode 100644 index 0000000..291d3d0 --- /dev/null +++ b/public/organe/PO52635.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52635", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52636.json b/public/organe/PO52636.json new file mode 100644 index 0000000..49d5578 --- /dev/null +++ b/public/organe/PO52636.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52636", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52637.json b/public/organe/PO52637.json new file mode 100644 index 0000000..5161c56 --- /dev/null +++ b/public/organe/PO52637.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52637", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52638.json b/public/organe/PO52638.json new file mode 100644 index 0000000..1d21d78 --- /dev/null +++ b/public/organe/PO52638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52638", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52639.json b/public/organe/PO52639.json new file mode 100644 index 0000000..73b12c5 --- /dev/null +++ b/public/organe/PO52639.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52639", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52640.json b/public/organe/PO52640.json new file mode 100644 index 0000000..7bf7c0d --- /dev/null +++ b/public/organe/PO52640.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52640", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52641.json b/public/organe/PO52641.json new file mode 100644 index 0000000..98bd0e5 --- /dev/null +++ b/public/organe/PO52641.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52641", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52642.json b/public/organe/PO52642.json new file mode 100644 index 0000000..166fd99 --- /dev/null +++ b/public/organe/PO52642.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52642", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52643.json b/public/organe/PO52643.json new file mode 100644 index 0000000..fd35c72 --- /dev/null +++ b/public/organe/PO52643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52643", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52644.json b/public/organe/PO52644.json new file mode 100644 index 0000000..f12d1be --- /dev/null +++ b/public/organe/PO52644.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52644", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52645.json b/public/organe/PO52645.json new file mode 100644 index 0000000..1e12c2f --- /dev/null +++ b/public/organe/PO52645.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52645", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52646.json b/public/organe/PO52646.json new file mode 100644 index 0000000..4b91f9b --- /dev/null +++ b/public/organe/PO52646.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52646", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52647.json b/public/organe/PO52647.json new file mode 100644 index 0000000..c0ec3b5 --- /dev/null +++ b/public/organe/PO52647.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52647", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52648.json b/public/organe/PO52648.json new file mode 100644 index 0000000..de35453 --- /dev/null +++ b/public/organe/PO52648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52648", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52649.json b/public/organe/PO52649.json new file mode 100644 index 0000000..909c509 --- /dev/null +++ b/public/organe/PO52649.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52649", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52650.json b/public/organe/PO52650.json new file mode 100644 index 0000000..feb8458 --- /dev/null +++ b/public/organe/PO52650.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52650", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52651.json b/public/organe/PO52651.json new file mode 100644 index 0000000..f659322 --- /dev/null +++ b/public/organe/PO52651.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52651", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52652.json b/public/organe/PO52652.json new file mode 100644 index 0000000..7973a3f --- /dev/null +++ b/public/organe/PO52652.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52652", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52653.json b/public/organe/PO52653.json new file mode 100644 index 0000000..e0780b2 --- /dev/null +++ b/public/organe/PO52653.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52653", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52654.json b/public/organe/PO52654.json new file mode 100644 index 0000000..63854b0 --- /dev/null +++ b/public/organe/PO52654.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52654", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52655.json b/public/organe/PO52655.json new file mode 100644 index 0000000..4869e5c --- /dev/null +++ b/public/organe/PO52655.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52655", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52656.json b/public/organe/PO52656.json new file mode 100644 index 0000000..b7ac3c3 --- /dev/null +++ b/public/organe/PO52656.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52656", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52657.json b/public/organe/PO52657.json new file mode 100644 index 0000000..d0055ad --- /dev/null +++ b/public/organe/PO52657.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52657", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52658.json b/public/organe/PO52658.json new file mode 100644 index 0000000..6a11477 --- /dev/null +++ b/public/organe/PO52658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52658", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52659.json b/public/organe/PO52659.json new file mode 100644 index 0000000..44a7372 --- /dev/null +++ b/public/organe/PO52659.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52659", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52660.json b/public/organe/PO52660.json new file mode 100644 index 0000000..bb9cdae --- /dev/null +++ b/public/organe/PO52660.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52660", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO52661.json b/public/organe/PO52661.json new file mode 100644 index 0000000..5aaf5b6 --- /dev/null +++ b/public/organe/PO52661.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52661", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52662.json b/public/organe/PO52662.json new file mode 100644 index 0000000..c3cb39f --- /dev/null +++ b/public/organe/PO52662.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52662", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52663.json b/public/organe/PO52663.json new file mode 100644 index 0000000..69a1a5f --- /dev/null +++ b/public/organe/PO52663.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52663", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52664.json b/public/organe/PO52664.json new file mode 100644 index 0000000..cf180c2 --- /dev/null +++ b/public/organe/PO52664.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52664", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52665.json b/public/organe/PO52665.json new file mode 100644 index 0000000..b28a034 --- /dev/null +++ b/public/organe/PO52665.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52665", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52666.json b/public/organe/PO52666.json new file mode 100644 index 0000000..5d274bc --- /dev/null +++ b/public/organe/PO52666.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52666", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52667.json b/public/organe/PO52667.json new file mode 100644 index 0000000..8ac2a5d --- /dev/null +++ b/public/organe/PO52667.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52667", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52668.json b/public/organe/PO52668.json new file mode 100644 index 0000000..b24fe5a --- /dev/null +++ b/public/organe/PO52668.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52668", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52669.json b/public/organe/PO52669.json new file mode 100644 index 0000000..76fba5f --- /dev/null +++ b/public/organe/PO52669.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52669", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52670.json b/public/organe/PO52670.json new file mode 100644 index 0000000..8d7a350 --- /dev/null +++ b/public/organe/PO52670.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52670", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52671.json b/public/organe/PO52671.json new file mode 100644 index 0000000..255d64d --- /dev/null +++ b/public/organe/PO52671.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52671", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52672.json b/public/organe/PO52672.json new file mode 100644 index 0000000..eb9f99d --- /dev/null +++ b/public/organe/PO52672.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52672", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52673.json b/public/organe/PO52673.json new file mode 100644 index 0000000..5caa5f3 --- /dev/null +++ b/public/organe/PO52673.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52673", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52674.json b/public/organe/PO52674.json new file mode 100644 index 0000000..7354b58 --- /dev/null +++ b/public/organe/PO52674.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52674", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52675.json b/public/organe/PO52675.json new file mode 100644 index 0000000..0398c74 --- /dev/null +++ b/public/organe/PO52675.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52675", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52676.json b/public/organe/PO52676.json new file mode 100644 index 0000000..815566d --- /dev/null +++ b/public/organe/PO52676.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52676", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52677.json b/public/organe/PO52677.json new file mode 100644 index 0000000..580a498 --- /dev/null +++ b/public/organe/PO52677.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52677", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52678.json b/public/organe/PO52678.json new file mode 100644 index 0000000..46a4f70 --- /dev/null +++ b/public/organe/PO52678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52678", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52679.json b/public/organe/PO52679.json new file mode 100644 index 0000000..1dac6f2 --- /dev/null +++ b/public/organe/PO52679.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52679", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52680.json b/public/organe/PO52680.json new file mode 100644 index 0000000..2f7e161 --- /dev/null +++ b/public/organe/PO52680.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52680", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52681.json b/public/organe/PO52681.json new file mode 100644 index 0000000..46ad68a --- /dev/null +++ b/public/organe/PO52681.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52681", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52682.json b/public/organe/PO52682.json new file mode 100644 index 0000000..53b3afa --- /dev/null +++ b/public/organe/PO52682.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52682", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52683.json b/public/organe/PO52683.json new file mode 100644 index 0000000..f44a72b --- /dev/null +++ b/public/organe/PO52683.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52683", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52684.json b/public/organe/PO52684.json new file mode 100644 index 0000000..74d453c --- /dev/null +++ b/public/organe/PO52684.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52684", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52685.json b/public/organe/PO52685.json new file mode 100644 index 0000000..a150ab5 --- /dev/null +++ b/public/organe/PO52685.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52685", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52686.json b/public/organe/PO52686.json new file mode 100644 index 0000000..22428c8 --- /dev/null +++ b/public/organe/PO52686.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52686", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52687.json b/public/organe/PO52687.json new file mode 100644 index 0000000..c5d934c --- /dev/null +++ b/public/organe/PO52687.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52687", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52688.json b/public/organe/PO52688.json new file mode 100644 index 0000000..12511eb --- /dev/null +++ b/public/organe/PO52688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52688", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52689.json b/public/organe/PO52689.json new file mode 100644 index 0000000..a4c5720 --- /dev/null +++ b/public/organe/PO52689.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52689", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52690.json b/public/organe/PO52690.json new file mode 100644 index 0000000..98fdc19 --- /dev/null +++ b/public/organe/PO52690.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52690", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52691.json b/public/organe/PO52691.json new file mode 100644 index 0000000..8f59978 --- /dev/null +++ b/public/organe/PO52691.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52691", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52692.json b/public/organe/PO52692.json new file mode 100644 index 0000000..99e3985 --- /dev/null +++ b/public/organe/PO52692.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52692", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52693.json b/public/organe/PO52693.json new file mode 100644 index 0000000..16d6eca --- /dev/null +++ b/public/organe/PO52693.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52693", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52694.json b/public/organe/PO52694.json new file mode 100644 index 0000000..b8493b1 --- /dev/null +++ b/public/organe/PO52694.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52694", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52695.json b/public/organe/PO52695.json new file mode 100644 index 0000000..efbe4d5 --- /dev/null +++ b/public/organe/PO52695.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52695", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52696.json b/public/organe/PO52696.json new file mode 100644 index 0000000..0f87873 --- /dev/null +++ b/public/organe/PO52696.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52696", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52697.json b/public/organe/PO52697.json new file mode 100644 index 0000000..ab9d6b9 --- /dev/null +++ b/public/organe/PO52697.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52697", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52698.json b/public/organe/PO52698.json new file mode 100644 index 0000000..a768223 --- /dev/null +++ b/public/organe/PO52698.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52698", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52699.json b/public/organe/PO52699.json new file mode 100644 index 0000000..dee061b --- /dev/null +++ b/public/organe/PO52699.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52699", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52700.json b/public/organe/PO52700.json new file mode 100644 index 0000000..162c04b --- /dev/null +++ b/public/organe/PO52700.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52700", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52701.json b/public/organe/PO52701.json new file mode 100644 index 0000000..1c2c8d7 --- /dev/null +++ b/public/organe/PO52701.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52701", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52702.json b/public/organe/PO52702.json new file mode 100644 index 0000000..88f11a4 --- /dev/null +++ b/public/organe/PO52702.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52702", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52703.json b/public/organe/PO52703.json new file mode 100644 index 0000000..52980e1 --- /dev/null +++ b/public/organe/PO52703.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52703", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52704.json b/public/organe/PO52704.json new file mode 100644 index 0000000..d0ebcb1 --- /dev/null +++ b/public/organe/PO52704.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52704", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52705.json b/public/organe/PO52705.json new file mode 100644 index 0000000..1352716 --- /dev/null +++ b/public/organe/PO52705.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52705", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52706.json b/public/organe/PO52706.json new file mode 100644 index 0000000..f4c004b --- /dev/null +++ b/public/organe/PO52706.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52706", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52707.json b/public/organe/PO52707.json new file mode 100644 index 0000000..b1b2a95 --- /dev/null +++ b/public/organe/PO52707.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52707", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52708.json b/public/organe/PO52708.json new file mode 100644 index 0000000..294f9af --- /dev/null +++ b/public/organe/PO52708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52708", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52709.json b/public/organe/PO52709.json new file mode 100644 index 0000000..5514860 --- /dev/null +++ b/public/organe/PO52709.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52709", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52710.json b/public/organe/PO52710.json new file mode 100644 index 0000000..949ef70 --- /dev/null +++ b/public/organe/PO52710.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52710", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52711.json b/public/organe/PO52711.json new file mode 100644 index 0000000..a11439c --- /dev/null +++ b/public/organe/PO52711.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52711", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52712.json b/public/organe/PO52712.json new file mode 100644 index 0000000..2a1d178 --- /dev/null +++ b/public/organe/PO52712.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52712", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52713.json b/public/organe/PO52713.json new file mode 100644 index 0000000..59fa0bf --- /dev/null +++ b/public/organe/PO52713.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52713", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52714.json b/public/organe/PO52714.json new file mode 100644 index 0000000..ea5baa5 --- /dev/null +++ b/public/organe/PO52714.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52714", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52715.json b/public/organe/PO52715.json new file mode 100644 index 0000000..cbeb3e2 --- /dev/null +++ b/public/organe/PO52715.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52715", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52716.json b/public/organe/PO52716.json new file mode 100644 index 0000000..b573ceb --- /dev/null +++ b/public/organe/PO52716.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52716", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52717.json b/public/organe/PO52717.json new file mode 100644 index 0000000..d23386e --- /dev/null +++ b/public/organe/PO52717.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52717", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52718.json b/public/organe/PO52718.json new file mode 100644 index 0000000..843b38d --- /dev/null +++ b/public/organe/PO52718.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52718", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO52719.json b/public/organe/PO52719.json new file mode 100644 index 0000000..eac4997 --- /dev/null +++ b/public/organe/PO52719.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52719", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52720.json b/public/organe/PO52720.json new file mode 100644 index 0000000..70c2f3d --- /dev/null +++ b/public/organe/PO52720.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52720", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52721.json b/public/organe/PO52721.json new file mode 100644 index 0000000..7235af5 --- /dev/null +++ b/public/organe/PO52721.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52721", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52722.json b/public/organe/PO52722.json new file mode 100644 index 0000000..44cb418 --- /dev/null +++ b/public/organe/PO52722.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52722", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52723.json b/public/organe/PO52723.json new file mode 100644 index 0000000..8c25137 --- /dev/null +++ b/public/organe/PO52723.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52723", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52724.json b/public/organe/PO52724.json new file mode 100644 index 0000000..b8d4898 --- /dev/null +++ b/public/organe/PO52724.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52724", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52725.json b/public/organe/PO52725.json new file mode 100644 index 0000000..699bfd5 --- /dev/null +++ b/public/organe/PO52725.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52725", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52726.json b/public/organe/PO52726.json new file mode 100644 index 0000000..bc62800 --- /dev/null +++ b/public/organe/PO52726.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52726", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52727.json b/public/organe/PO52727.json new file mode 100644 index 0000000..9ee5941 --- /dev/null +++ b/public/organe/PO52727.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52727", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52728.json b/public/organe/PO52728.json new file mode 100644 index 0000000..e5348e2 --- /dev/null +++ b/public/organe/PO52728.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52728", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52729.json b/public/organe/PO52729.json new file mode 100644 index 0000000..d99d793 --- /dev/null +++ b/public/organe/PO52729.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52729", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52730.json b/public/organe/PO52730.json new file mode 100644 index 0000000..14efda0 --- /dev/null +++ b/public/organe/PO52730.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52730", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52731.json b/public/organe/PO52731.json new file mode 100644 index 0000000..30c3413 --- /dev/null +++ b/public/organe/PO52731.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52731", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52732.json b/public/organe/PO52732.json new file mode 100644 index 0000000..5ebc3ba --- /dev/null +++ b/public/organe/PO52732.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52732", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52733.json b/public/organe/PO52733.json new file mode 100644 index 0000000..2ba594c --- /dev/null +++ b/public/organe/PO52733.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52733", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52734.json b/public/organe/PO52734.json new file mode 100644 index 0000000..1f95b69 --- /dev/null +++ b/public/organe/PO52734.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52734", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52735.json b/public/organe/PO52735.json new file mode 100644 index 0000000..ab3118d --- /dev/null +++ b/public/organe/PO52735.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52735", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52736.json b/public/organe/PO52736.json new file mode 100644 index 0000000..adda0de --- /dev/null +++ b/public/organe/PO52736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52736", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO52737.json b/public/organe/PO52737.json new file mode 100644 index 0000000..76c390d --- /dev/null +++ b/public/organe/PO52737.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52737", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52738.json b/public/organe/PO52738.json new file mode 100644 index 0000000..f18f764 --- /dev/null +++ b/public/organe/PO52738.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52738", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52739.json b/public/organe/PO52739.json new file mode 100644 index 0000000..3ed76de --- /dev/null +++ b/public/organe/PO52739.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52739", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52740.json b/public/organe/PO52740.json new file mode 100644 index 0000000..af9ac58 --- /dev/null +++ b/public/organe/PO52740.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52740", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52741.json b/public/organe/PO52741.json new file mode 100644 index 0000000..ef96f82 --- /dev/null +++ b/public/organe/PO52741.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52741", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52742.json b/public/organe/PO52742.json new file mode 100644 index 0000000..7a0ab7c --- /dev/null +++ b/public/organe/PO52742.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52742", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52743.json b/public/organe/PO52743.json new file mode 100644 index 0000000..0b7af05 --- /dev/null +++ b/public/organe/PO52743.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52743", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52744.json b/public/organe/PO52744.json new file mode 100644 index 0000000..8d3c621 --- /dev/null +++ b/public/organe/PO52744.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52744", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52745.json b/public/organe/PO52745.json new file mode 100644 index 0000000..d2a8607 --- /dev/null +++ b/public/organe/PO52745.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52745", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52746.json b/public/organe/PO52746.json new file mode 100644 index 0000000..37829b1 --- /dev/null +++ b/public/organe/PO52746.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52746", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52747.json b/public/organe/PO52747.json new file mode 100644 index 0000000..7574ac6 --- /dev/null +++ b/public/organe/PO52747.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52747", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52748.json b/public/organe/PO52748.json new file mode 100644 index 0000000..446dd38 --- /dev/null +++ b/public/organe/PO52748.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52748", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52749.json b/public/organe/PO52749.json new file mode 100644 index 0000000..dc18797 --- /dev/null +++ b/public/organe/PO52749.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52749", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52750.json b/public/organe/PO52750.json new file mode 100644 index 0000000..03ff8d8 --- /dev/null +++ b/public/organe/PO52750.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52750", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52751.json b/public/organe/PO52751.json new file mode 100644 index 0000000..c6c6756 --- /dev/null +++ b/public/organe/PO52751.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52751", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52752.json b/public/organe/PO52752.json new file mode 100644 index 0000000..7c83598 --- /dev/null +++ b/public/organe/PO52752.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52752", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52753.json b/public/organe/PO52753.json new file mode 100644 index 0000000..59d43f6 --- /dev/null +++ b/public/organe/PO52753.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52753", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52754.json b/public/organe/PO52754.json new file mode 100644 index 0000000..45649c0 --- /dev/null +++ b/public/organe/PO52754.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52754", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52755.json b/public/organe/PO52755.json new file mode 100644 index 0000000..abba5b6 --- /dev/null +++ b/public/organe/PO52755.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52755", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52756.json b/public/organe/PO52756.json new file mode 100644 index 0000000..60a4524 --- /dev/null +++ b/public/organe/PO52756.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52756", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52757.json b/public/organe/PO52757.json new file mode 100644 index 0000000..4cc6e98 --- /dev/null +++ b/public/organe/PO52757.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52757", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52758.json b/public/organe/PO52758.json new file mode 100644 index 0000000..2fc1d6f --- /dev/null +++ b/public/organe/PO52758.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52758", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52759.json b/public/organe/PO52759.json new file mode 100644 index 0000000..45955f6 --- /dev/null +++ b/public/organe/PO52759.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52759", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52760.json b/public/organe/PO52760.json new file mode 100644 index 0000000..0f117bd --- /dev/null +++ b/public/organe/PO52760.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52760", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52761.json b/public/organe/PO52761.json new file mode 100644 index 0000000..7f78b3b --- /dev/null +++ b/public/organe/PO52761.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52761", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52762.json b/public/organe/PO52762.json new file mode 100644 index 0000000..3762508 --- /dev/null +++ b/public/organe/PO52762.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52762", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52763.json b/public/organe/PO52763.json new file mode 100644 index 0000000..92974af --- /dev/null +++ b/public/organe/PO52763.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52763", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO52764.json b/public/organe/PO52764.json new file mode 100644 index 0000000..480f6d6 --- /dev/null +++ b/public/organe/PO52764.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52764", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52765.json b/public/organe/PO52765.json new file mode 100644 index 0000000..b60bb87 --- /dev/null +++ b/public/organe/PO52765.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52765", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52766.json b/public/organe/PO52766.json new file mode 100644 index 0000000..142ac39 --- /dev/null +++ b/public/organe/PO52766.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52766", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52767.json b/public/organe/PO52767.json new file mode 100644 index 0000000..eafc70d --- /dev/null +++ b/public/organe/PO52767.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52767", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52768.json b/public/organe/PO52768.json new file mode 100644 index 0000000..5e41481 --- /dev/null +++ b/public/organe/PO52768.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52768", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52769.json b/public/organe/PO52769.json new file mode 100644 index 0000000..6c5066e --- /dev/null +++ b/public/organe/PO52769.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52769", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52770.json b/public/organe/PO52770.json new file mode 100644 index 0000000..a643648 --- /dev/null +++ b/public/organe/PO52770.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52770", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52771.json b/public/organe/PO52771.json new file mode 100644 index 0000000..9e996ff --- /dev/null +++ b/public/organe/PO52771.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52771", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52772.json b/public/organe/PO52772.json new file mode 100644 index 0000000..433bb94 --- /dev/null +++ b/public/organe/PO52772.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52772", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52773.json b/public/organe/PO52773.json new file mode 100644 index 0000000..10ae29f --- /dev/null +++ b/public/organe/PO52773.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52773", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52774.json b/public/organe/PO52774.json new file mode 100644 index 0000000..8d95670 --- /dev/null +++ b/public/organe/PO52774.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52774", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52775.json b/public/organe/PO52775.json new file mode 100644 index 0000000..1629362 --- /dev/null +++ b/public/organe/PO52775.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52775", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52776.json b/public/organe/PO52776.json new file mode 100644 index 0000000..76a637c --- /dev/null +++ b/public/organe/PO52776.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52776", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52777.json b/public/organe/PO52777.json new file mode 100644 index 0000000..278ab8e --- /dev/null +++ b/public/organe/PO52777.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52777", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52778.json b/public/organe/PO52778.json new file mode 100644 index 0000000..e8ce432 --- /dev/null +++ b/public/organe/PO52778.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52778", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52779.json b/public/organe/PO52779.json new file mode 100644 index 0000000..acfdf98 --- /dev/null +++ b/public/organe/PO52779.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52779", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52780.json b/public/organe/PO52780.json new file mode 100644 index 0000000..45c5b05 --- /dev/null +++ b/public/organe/PO52780.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52780", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52781.json b/public/organe/PO52781.json new file mode 100644 index 0000000..2bb504c --- /dev/null +++ b/public/organe/PO52781.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52781", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52782.json b/public/organe/PO52782.json new file mode 100644 index 0000000..47629ea --- /dev/null +++ b/public/organe/PO52782.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52782", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52783.json b/public/organe/PO52783.json new file mode 100644 index 0000000..3f9d083 --- /dev/null +++ b/public/organe/PO52783.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52783", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52784.json b/public/organe/PO52784.json new file mode 100644 index 0000000..c23ba45 --- /dev/null +++ b/public/organe/PO52784.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52784", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52785.json b/public/organe/PO52785.json new file mode 100644 index 0000000..3c1ae7c --- /dev/null +++ b/public/organe/PO52785.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52785", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO52786.json b/public/organe/PO52786.json new file mode 100644 index 0000000..29eec6d --- /dev/null +++ b/public/organe/PO52786.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52786", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52787.json b/public/organe/PO52787.json new file mode 100644 index 0000000..2a441b6 --- /dev/null +++ b/public/organe/PO52787.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52787", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52788.json b/public/organe/PO52788.json new file mode 100644 index 0000000..41f1678 --- /dev/null +++ b/public/organe/PO52788.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52788", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52789.json b/public/organe/PO52789.json new file mode 100644 index 0000000..c5c5436 --- /dev/null +++ b/public/organe/PO52789.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52789", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52790.json b/public/organe/PO52790.json new file mode 100644 index 0000000..86a77c8 --- /dev/null +++ b/public/organe/PO52790.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52790", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52791.json b/public/organe/PO52791.json new file mode 100644 index 0000000..00defed --- /dev/null +++ b/public/organe/PO52791.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52791", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52792.json b/public/organe/PO52792.json new file mode 100644 index 0000000..ec13245 --- /dev/null +++ b/public/organe/PO52792.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52792", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52793.json b/public/organe/PO52793.json new file mode 100644 index 0000000..4e33a3e --- /dev/null +++ b/public/organe/PO52793.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52793", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52794.json b/public/organe/PO52794.json new file mode 100644 index 0000000..7d93324 --- /dev/null +++ b/public/organe/PO52794.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52794", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52795.json b/public/organe/PO52795.json new file mode 100644 index 0000000..4986240 --- /dev/null +++ b/public/organe/PO52795.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52795", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52796.json b/public/organe/PO52796.json new file mode 100644 index 0000000..66ce515 --- /dev/null +++ b/public/organe/PO52796.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52796", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52797.json b/public/organe/PO52797.json new file mode 100644 index 0000000..f9406e3 --- /dev/null +++ b/public/organe/PO52797.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52797", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52798.json b/public/organe/PO52798.json new file mode 100644 index 0000000..e9e942e --- /dev/null +++ b/public/organe/PO52798.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52798", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52799.json b/public/organe/PO52799.json new file mode 100644 index 0000000..d349208 --- /dev/null +++ b/public/organe/PO52799.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52799", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52800.json b/public/organe/PO52800.json new file mode 100644 index 0000000..05dcfba --- /dev/null +++ b/public/organe/PO52800.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52800", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52801.json b/public/organe/PO52801.json new file mode 100644 index 0000000..d2a1749 --- /dev/null +++ b/public/organe/PO52801.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52801", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52802.json b/public/organe/PO52802.json new file mode 100644 index 0000000..498b7f8 --- /dev/null +++ b/public/organe/PO52802.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52802", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52803.json b/public/organe/PO52803.json new file mode 100644 index 0000000..f850ac9 --- /dev/null +++ b/public/organe/PO52803.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52803", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52804.json b/public/organe/PO52804.json new file mode 100644 index 0000000..db62c78 --- /dev/null +++ b/public/organe/PO52804.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52804", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52805.json b/public/organe/PO52805.json new file mode 100644 index 0000000..0a0f1d1 --- /dev/null +++ b/public/organe/PO52805.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52805", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52806.json b/public/organe/PO52806.json new file mode 100644 index 0000000..b212957 --- /dev/null +++ b/public/organe/PO52806.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52806", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52807.json b/public/organe/PO52807.json new file mode 100644 index 0000000..502176e --- /dev/null +++ b/public/organe/PO52807.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52807", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52808.json b/public/organe/PO52808.json new file mode 100644 index 0000000..0ab65b5 --- /dev/null +++ b/public/organe/PO52808.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52808", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52809.json b/public/organe/PO52809.json new file mode 100644 index 0000000..3544a6d --- /dev/null +++ b/public/organe/PO52809.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52809", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52810.json b/public/organe/PO52810.json new file mode 100644 index 0000000..7b11889 --- /dev/null +++ b/public/organe/PO52810.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52810", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52811.json b/public/organe/PO52811.json new file mode 100644 index 0000000..9016a9b --- /dev/null +++ b/public/organe/PO52811.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52811", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52812.json b/public/organe/PO52812.json new file mode 100644 index 0000000..3466cb0 --- /dev/null +++ b/public/organe/PO52812.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52812", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52813.json b/public/organe/PO52813.json new file mode 100644 index 0000000..5f18855 --- /dev/null +++ b/public/organe/PO52813.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52813", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52814.json b/public/organe/PO52814.json new file mode 100644 index 0000000..97fc849 --- /dev/null +++ b/public/organe/PO52814.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52814", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52815.json b/public/organe/PO52815.json new file mode 100644 index 0000000..c10c3f6 --- /dev/null +++ b/public/organe/PO52815.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52815", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52816.json b/public/organe/PO52816.json new file mode 100644 index 0000000..2a7fffd --- /dev/null +++ b/public/organe/PO52816.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52816", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52817.json b/public/organe/PO52817.json new file mode 100644 index 0000000..8253236 --- /dev/null +++ b/public/organe/PO52817.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52817", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52818.json b/public/organe/PO52818.json new file mode 100644 index 0000000..4fd1e42 --- /dev/null +++ b/public/organe/PO52818.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52818", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52819.json b/public/organe/PO52819.json new file mode 100644 index 0000000..e19ad28 --- /dev/null +++ b/public/organe/PO52819.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52819", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO528194.json b/public/organe/PO528194.json new file mode 100644 index 0000000..0d8b44e --- /dev/null +++ b/public/organe/PO528194.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO528194", "codeType": "ORGEXTPARL", "libelle": "comit\u00e9 consultatif du Fonds pour le d\u00e9veloppement de la vie associative", "libelleEdition": "du comit\u00e9 consultatif du Fonds pour le d\u00e9veloppement de la vie associative", "libelleAbrege": "Vie associative (comit\u00e9 consultatif)", "libelleAbrev": "290", "viMoDe": {"dateDebut": "2011-12-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 27 de la loi n\u00b0 2018-699 du 3 ao\u00fbt 2018", "siteInternet": "https://www.associations.gouv.fr/le-fdva.html", "nombreReunionsAnnuelles": "4"}} \ No newline at end of file diff --git a/public/organe/PO528198.json b/public/organe/PO528198.json new file mode 100644 index 0000000..f37ab80 --- /dev/null +++ b/public/organe/PO528198.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO528198", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur des gens de mer", "libelleEdition": "du Conseil sup\u00e9rieur des gens de mer", "libelleAbrege": "Gens de mer", "libelleAbrev": "291", "viMoDe": {"dateDebut": "2011-12-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L.\u00a05581-1 du code des transports", "siteInternet": null, "nombreReunionsAnnuelles": "3"}} \ No newline at end of file diff --git a/public/organe/PO52820.json b/public/organe/PO52820.json new file mode 100644 index 0000000..0481d92 --- /dev/null +++ b/public/organe/PO52820.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52820", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52821.json b/public/organe/PO52821.json new file mode 100644 index 0000000..5b16890 --- /dev/null +++ b/public/organe/PO52821.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52821", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52822.json b/public/organe/PO52822.json new file mode 100644 index 0000000..8c7f29d --- /dev/null +++ b/public/organe/PO52822.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52822", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52823.json b/public/organe/PO52823.json new file mode 100644 index 0000000..4c2d167 --- /dev/null +++ b/public/organe/PO52823.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52823", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52824.json b/public/organe/PO52824.json new file mode 100644 index 0000000..c8ab875 --- /dev/null +++ b/public/organe/PO52824.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52824", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52825.json b/public/organe/PO52825.json new file mode 100644 index 0000000..d9e2c3f --- /dev/null +++ b/public/organe/PO52825.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52825", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52826.json b/public/organe/PO52826.json new file mode 100644 index 0000000..b5058b7 --- /dev/null +++ b/public/organe/PO52826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52826", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52827.json b/public/organe/PO52827.json new file mode 100644 index 0000000..13f849a --- /dev/null +++ b/public/organe/PO52827.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52827", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO52828.json b/public/organe/PO52828.json new file mode 100644 index 0000000..477b371 --- /dev/null +++ b/public/organe/PO52828.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52828", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52829.json b/public/organe/PO52829.json new file mode 100644 index 0000000..aee753f --- /dev/null +++ b/public/organe/PO52829.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52829", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52830.json b/public/organe/PO52830.json new file mode 100644 index 0000000..c92854f --- /dev/null +++ b/public/organe/PO52830.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52830", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52831.json b/public/organe/PO52831.json new file mode 100644 index 0000000..8ae8ac6 --- /dev/null +++ b/public/organe/PO52831.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52831", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52832.json b/public/organe/PO52832.json new file mode 100644 index 0000000..bd8824c --- /dev/null +++ b/public/organe/PO52832.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52832", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52833.json b/public/organe/PO52833.json new file mode 100644 index 0000000..09858f0 --- /dev/null +++ b/public/organe/PO52833.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52833", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52834.json b/public/organe/PO52834.json new file mode 100644 index 0000000..6c57ed2 --- /dev/null +++ b/public/organe/PO52834.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52834", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52835.json b/public/organe/PO52835.json new file mode 100644 index 0000000..6279909 --- /dev/null +++ b/public/organe/PO52835.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52835", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52836.json b/public/organe/PO52836.json new file mode 100644 index 0000000..0940d48 --- /dev/null +++ b/public/organe/PO52836.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52836", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52837.json b/public/organe/PO52837.json new file mode 100644 index 0000000..004bc33 --- /dev/null +++ b/public/organe/PO52837.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52837", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52838.json b/public/organe/PO52838.json new file mode 100644 index 0000000..192660c --- /dev/null +++ b/public/organe/PO52838.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52838", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52839.json b/public/organe/PO52839.json new file mode 100644 index 0000000..a097eda --- /dev/null +++ b/public/organe/PO52839.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52839", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52840.json b/public/organe/PO52840.json new file mode 100644 index 0000000..45795a9 --- /dev/null +++ b/public/organe/PO52840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52840", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52841.json b/public/organe/PO52841.json new file mode 100644 index 0000000..35b9bfe --- /dev/null +++ b/public/organe/PO52841.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52841", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52842.json b/public/organe/PO52842.json new file mode 100644 index 0000000..fd68d5d --- /dev/null +++ b/public/organe/PO52842.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52842", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52843.json b/public/organe/PO52843.json new file mode 100644 index 0000000..64f20ce --- /dev/null +++ b/public/organe/PO52843.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52843", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52844.json b/public/organe/PO52844.json new file mode 100644 index 0000000..d8483a0 --- /dev/null +++ b/public/organe/PO52844.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52844", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52845.json b/public/organe/PO52845.json new file mode 100644 index 0000000..71e2b41 --- /dev/null +++ b/public/organe/PO52845.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52845", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO52846.json b/public/organe/PO52846.json new file mode 100644 index 0000000..10ba79b --- /dev/null +++ b/public/organe/PO52846.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52846", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1945-11-06", "dateAgrement": null, "dateFin": "1946-06-10"}, "organeParent": null, "chambre": null, "regime": "Assembl\u00e9es nationales constituantes", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52848.json b/public/organe/PO52848.json new file mode 100644 index 0000000..0f26126 --- /dev/null +++ b/public/organe/PO52848.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52848", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1946-11-28", "dateAgrement": null, "dateFin": "1951-07-04"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52849.json b/public/organe/PO52849.json new file mode 100644 index 0000000..76381b2 --- /dev/null +++ b/public/organe/PO52849.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52849", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52850.json b/public/organe/PO52850.json new file mode 100644 index 0000000..35333b9 --- /dev/null +++ b/public/organe/PO52850.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52850", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52851.json b/public/organe/PO52851.json new file mode 100644 index 0000000..6f41421 --- /dev/null +++ b/public/organe/PO52851.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52851", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52852.json b/public/organe/PO52852.json new file mode 100644 index 0000000..bd38e6a --- /dev/null +++ b/public/organe/PO52852.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52852", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52853.json b/public/organe/PO52853.json new file mode 100644 index 0000000..2921dd1 --- /dev/null +++ b/public/organe/PO52853.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52853", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52854.json b/public/organe/PO52854.json new file mode 100644 index 0000000..80b568c --- /dev/null +++ b/public/organe/PO52854.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52854", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52855.json b/public/organe/PO52855.json new file mode 100644 index 0000000..6ca1632 --- /dev/null +++ b/public/organe/PO52855.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52855", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52856.json b/public/organe/PO52856.json new file mode 100644 index 0000000..40f92e2 --- /dev/null +++ b/public/organe/PO52856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52856", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52857.json b/public/organe/PO52857.json new file mode 100644 index 0000000..3dfa111 --- /dev/null +++ b/public/organe/PO52857.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52857", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52858.json b/public/organe/PO52858.json new file mode 100644 index 0000000..c61b988 --- /dev/null +++ b/public/organe/PO52858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52858", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52859.json b/public/organe/PO52859.json new file mode 100644 index 0000000..b4b0e38 --- /dev/null +++ b/public/organe/PO52859.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52859", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52860.json b/public/organe/PO52860.json new file mode 100644 index 0000000..ca1d189 --- /dev/null +++ b/public/organe/PO52860.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52860", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52861.json b/public/organe/PO52861.json new file mode 100644 index 0000000..db94158 --- /dev/null +++ b/public/organe/PO52861.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52861", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52862.json b/public/organe/PO52862.json new file mode 100644 index 0000000..fbc9547 --- /dev/null +++ b/public/organe/PO52862.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52862", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52863.json b/public/organe/PO52863.json new file mode 100644 index 0000000..37ac21f --- /dev/null +++ b/public/organe/PO52863.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52863", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52864.json b/public/organe/PO52864.json new file mode 100644 index 0000000..156c9ac --- /dev/null +++ b/public/organe/PO52864.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52864", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52865.json b/public/organe/PO52865.json new file mode 100644 index 0000000..cc586b3 --- /dev/null +++ b/public/organe/PO52865.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52865", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52866.json b/public/organe/PO52866.json new file mode 100644 index 0000000..957ebc5 --- /dev/null +++ b/public/organe/PO52866.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52866", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52867.json b/public/organe/PO52867.json new file mode 100644 index 0000000..9c63887 --- /dev/null +++ b/public/organe/PO52867.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52867", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52868.json b/public/organe/PO52868.json new file mode 100644 index 0000000..6ea8a95 --- /dev/null +++ b/public/organe/PO52868.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52868", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52869.json b/public/organe/PO52869.json new file mode 100644 index 0000000..5ccd859 --- /dev/null +++ b/public/organe/PO52869.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52869", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52870.json b/public/organe/PO52870.json new file mode 100644 index 0000000..718f1c1 --- /dev/null +++ b/public/organe/PO52870.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52870", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52871.json b/public/organe/PO52871.json new file mode 100644 index 0000000..de34507 --- /dev/null +++ b/public/organe/PO52871.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52871", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52872.json b/public/organe/PO52872.json new file mode 100644 index 0000000..b42aa29 --- /dev/null +++ b/public/organe/PO52872.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52872", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52873.json b/public/organe/PO52873.json new file mode 100644 index 0000000..503f2ff --- /dev/null +++ b/public/organe/PO52873.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52873", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52874.json b/public/organe/PO52874.json new file mode 100644 index 0000000..9f73371 --- /dev/null +++ b/public/organe/PO52874.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52874", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52875.json b/public/organe/PO52875.json new file mode 100644 index 0000000..fb7f8e3 --- /dev/null +++ b/public/organe/PO52875.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52875", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52876.json b/public/organe/PO52876.json new file mode 100644 index 0000000..54d41c8 --- /dev/null +++ b/public/organe/PO52876.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52876", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52877.json b/public/organe/PO52877.json new file mode 100644 index 0000000..0b101ce --- /dev/null +++ b/public/organe/PO52877.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52877", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO52878.json b/public/organe/PO52878.json new file mode 100644 index 0000000..609dc19 --- /dev/null +++ b/public/organe/PO52878.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52878", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52879.json b/public/organe/PO52879.json new file mode 100644 index 0000000..c3c40b5 --- /dev/null +++ b/public/organe/PO52879.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52879", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52880.json b/public/organe/PO52880.json new file mode 100644 index 0000000..efc2b79 --- /dev/null +++ b/public/organe/PO52880.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52880", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52881.json b/public/organe/PO52881.json new file mode 100644 index 0000000..1224d40 --- /dev/null +++ b/public/organe/PO52881.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52881", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52882.json b/public/organe/PO52882.json new file mode 100644 index 0000000..d44aed3 --- /dev/null +++ b/public/organe/PO52882.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52882", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52883.json b/public/organe/PO52883.json new file mode 100644 index 0000000..50ed942 --- /dev/null +++ b/public/organe/PO52883.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52883", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52884.json b/public/organe/PO52884.json new file mode 100644 index 0000000..a54b75c --- /dev/null +++ b/public/organe/PO52884.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52884", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52885.json b/public/organe/PO52885.json new file mode 100644 index 0000000..6e0142c --- /dev/null +++ b/public/organe/PO52885.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52885", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52886.json b/public/organe/PO52886.json new file mode 100644 index 0000000..a1e45d8 --- /dev/null +++ b/public/organe/PO52886.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52886", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52887.json b/public/organe/PO52887.json new file mode 100644 index 0000000..398bf1e --- /dev/null +++ b/public/organe/PO52887.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52887", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52888.json b/public/organe/PO52888.json new file mode 100644 index 0000000..88814be --- /dev/null +++ b/public/organe/PO52888.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52888", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52889.json b/public/organe/PO52889.json new file mode 100644 index 0000000..bbce912 --- /dev/null +++ b/public/organe/PO52889.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52889", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52890.json b/public/organe/PO52890.json new file mode 100644 index 0000000..1e1e1e5 --- /dev/null +++ b/public/organe/PO52890.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52890", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52891.json b/public/organe/PO52891.json new file mode 100644 index 0000000..bbe23de --- /dev/null +++ b/public/organe/PO52891.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52891", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52892.json b/public/organe/PO52892.json new file mode 100644 index 0000000..d1257ae --- /dev/null +++ b/public/organe/PO52892.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52892", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52893.json b/public/organe/PO52893.json new file mode 100644 index 0000000..56d8539 --- /dev/null +++ b/public/organe/PO52893.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52893", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52894.json b/public/organe/PO52894.json new file mode 100644 index 0000000..f863a43 --- /dev/null +++ b/public/organe/PO52894.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52894", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52895.json b/public/organe/PO52895.json new file mode 100644 index 0000000..403d6b1 --- /dev/null +++ b/public/organe/PO52895.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52895", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52896.json b/public/organe/PO52896.json new file mode 100644 index 0000000..f1d4059 --- /dev/null +++ b/public/organe/PO52896.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52896", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52897.json b/public/organe/PO52897.json new file mode 100644 index 0000000..ca6f663 --- /dev/null +++ b/public/organe/PO52897.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52897", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52898.json b/public/organe/PO52898.json new file mode 100644 index 0000000..89b8361 --- /dev/null +++ b/public/organe/PO52898.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52898", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52899.json b/public/organe/PO52899.json new file mode 100644 index 0000000..47ba68a --- /dev/null +++ b/public/organe/PO52899.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52899", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52900.json b/public/organe/PO52900.json new file mode 100644 index 0000000..6ca04e6 --- /dev/null +++ b/public/organe/PO52900.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52900", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52901.json b/public/organe/PO52901.json new file mode 100644 index 0000000..ac8ebb8 --- /dev/null +++ b/public/organe/PO52901.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52901", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52902.json b/public/organe/PO52902.json new file mode 100644 index 0000000..ccd511a --- /dev/null +++ b/public/organe/PO52902.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52902", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52903.json b/public/organe/PO52903.json new file mode 100644 index 0000000..d73d65a --- /dev/null +++ b/public/organe/PO52903.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52903", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52904.json b/public/organe/PO52904.json new file mode 100644 index 0000000..50e62b1 --- /dev/null +++ b/public/organe/PO52904.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52904", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52905.json b/public/organe/PO52905.json new file mode 100644 index 0000000..32cd85d --- /dev/null +++ b/public/organe/PO52905.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52905", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52906.json b/public/organe/PO52906.json new file mode 100644 index 0000000..c9937f0 --- /dev/null +++ b/public/organe/PO52906.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52906", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52907.json b/public/organe/PO52907.json new file mode 100644 index 0000000..89f0349 --- /dev/null +++ b/public/organe/PO52907.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52907", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52908.json b/public/organe/PO52908.json new file mode 100644 index 0000000..095ed3b --- /dev/null +++ b/public/organe/PO52908.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52908", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52909.json b/public/organe/PO52909.json new file mode 100644 index 0000000..9619a17 --- /dev/null +++ b/public/organe/PO52909.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52909", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52910.json b/public/organe/PO52910.json new file mode 100644 index 0000000..a3cc6b9 --- /dev/null +++ b/public/organe/PO52910.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52910", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52911.json b/public/organe/PO52911.json new file mode 100644 index 0000000..ccc2388 --- /dev/null +++ b/public/organe/PO52911.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52911", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52912.json b/public/organe/PO52912.json new file mode 100644 index 0000000..d4d84dd --- /dev/null +++ b/public/organe/PO52912.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52912", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52913.json b/public/organe/PO52913.json new file mode 100644 index 0000000..7f3d745 --- /dev/null +++ b/public/organe/PO52913.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52913", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52914.json b/public/organe/PO52914.json new file mode 100644 index 0000000..fba1283 --- /dev/null +++ b/public/organe/PO52914.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52914", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52915.json b/public/organe/PO52915.json new file mode 100644 index 0000000..f554870 --- /dev/null +++ b/public/organe/PO52915.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52915", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52916.json b/public/organe/PO52916.json new file mode 100644 index 0000000..9412f10 --- /dev/null +++ b/public/organe/PO52916.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52916", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52917.json b/public/organe/PO52917.json new file mode 100644 index 0000000..9142e78 --- /dev/null +++ b/public/organe/PO52917.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52917", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO52918.json b/public/organe/PO52918.json new file mode 100644 index 0000000..e10f208 --- /dev/null +++ b/public/organe/PO52918.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52918", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52919.json b/public/organe/PO52919.json new file mode 100644 index 0000000..3317e90 --- /dev/null +++ b/public/organe/PO52919.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52919", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52920.json b/public/organe/PO52920.json new file mode 100644 index 0000000..6caae8f --- /dev/null +++ b/public/organe/PO52920.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52920", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52921.json b/public/organe/PO52921.json new file mode 100644 index 0000000..68c7658 --- /dev/null +++ b/public/organe/PO52921.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52921", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52922.json b/public/organe/PO52922.json new file mode 100644 index 0000000..8e96b7e --- /dev/null +++ b/public/organe/PO52922.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52922", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52923.json b/public/organe/PO52923.json new file mode 100644 index 0000000..59133e6 --- /dev/null +++ b/public/organe/PO52923.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52923", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52924.json b/public/organe/PO52924.json new file mode 100644 index 0000000..0c23ec2 --- /dev/null +++ b/public/organe/PO52924.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52924", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52925.json b/public/organe/PO52925.json new file mode 100644 index 0000000..3deb84b --- /dev/null +++ b/public/organe/PO52925.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52925", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52926.json b/public/organe/PO52926.json new file mode 100644 index 0000000..9b83c95 --- /dev/null +++ b/public/organe/PO52926.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52926", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52927.json b/public/organe/PO52927.json new file mode 100644 index 0000000..258e28f --- /dev/null +++ b/public/organe/PO52927.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52927", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52928.json b/public/organe/PO52928.json new file mode 100644 index 0000000..9114927 --- /dev/null +++ b/public/organe/PO52928.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52928", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52929.json b/public/organe/PO52929.json new file mode 100644 index 0000000..2d23c82 --- /dev/null +++ b/public/organe/PO52929.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52929", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52930.json b/public/organe/PO52930.json new file mode 100644 index 0000000..68e1602 --- /dev/null +++ b/public/organe/PO52930.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52930", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52931.json b/public/organe/PO52931.json new file mode 100644 index 0000000..184cf92 --- /dev/null +++ b/public/organe/PO52931.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52931", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52932.json b/public/organe/PO52932.json new file mode 100644 index 0000000..b24779d --- /dev/null +++ b/public/organe/PO52932.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52932", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52933.json b/public/organe/PO52933.json new file mode 100644 index 0000000..b2d7c35 --- /dev/null +++ b/public/organe/PO52933.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52933", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52934.json b/public/organe/PO52934.json new file mode 100644 index 0000000..9a62530 --- /dev/null +++ b/public/organe/PO52934.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52934", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52935.json b/public/organe/PO52935.json new file mode 100644 index 0000000..c22cc8c --- /dev/null +++ b/public/organe/PO52935.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52935", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO52936.json b/public/organe/PO52936.json new file mode 100644 index 0000000..052428e --- /dev/null +++ b/public/organe/PO52936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52936", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52937.json b/public/organe/PO52937.json new file mode 100644 index 0000000..c5b701d --- /dev/null +++ b/public/organe/PO52937.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52937", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52938.json b/public/organe/PO52938.json new file mode 100644 index 0000000..9b861b7 --- /dev/null +++ b/public/organe/PO52938.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52938", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52939.json b/public/organe/PO52939.json new file mode 100644 index 0000000..2adc0f8 --- /dev/null +++ b/public/organe/PO52939.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52939", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52940.json b/public/organe/PO52940.json new file mode 100644 index 0000000..e8cd61c --- /dev/null +++ b/public/organe/PO52940.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52940", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52941.json b/public/organe/PO52941.json new file mode 100644 index 0000000..62f55ca --- /dev/null +++ b/public/organe/PO52941.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52941", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52942.json b/public/organe/PO52942.json new file mode 100644 index 0000000..2f1e568 --- /dev/null +++ b/public/organe/PO52942.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52942", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52943.json b/public/organe/PO52943.json new file mode 100644 index 0000000..6fec6a5 --- /dev/null +++ b/public/organe/PO52943.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52943", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52944.json b/public/organe/PO52944.json new file mode 100644 index 0000000..72b2c30 --- /dev/null +++ b/public/organe/PO52944.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52944", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52945.json b/public/organe/PO52945.json new file mode 100644 index 0000000..19d500b --- /dev/null +++ b/public/organe/PO52945.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52945", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52946.json b/public/organe/PO52946.json new file mode 100644 index 0000000..d47bc6f --- /dev/null +++ b/public/organe/PO52946.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52946", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52947.json b/public/organe/PO52947.json new file mode 100644 index 0000000..a9da075 --- /dev/null +++ b/public/organe/PO52947.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52947", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52948.json b/public/organe/PO52948.json new file mode 100644 index 0000000..22a3e46 --- /dev/null +++ b/public/organe/PO52948.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52948", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52949.json b/public/organe/PO52949.json new file mode 100644 index 0000000..c529b95 --- /dev/null +++ b/public/organe/PO52949.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52949", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52950.json b/public/organe/PO52950.json new file mode 100644 index 0000000..a75934a --- /dev/null +++ b/public/organe/PO52950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52950", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52951.json b/public/organe/PO52951.json new file mode 100644 index 0000000..4d085e7 --- /dev/null +++ b/public/organe/PO52951.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52951", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52952.json b/public/organe/PO52952.json new file mode 100644 index 0000000..5ef7a40 --- /dev/null +++ b/public/organe/PO52952.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52952", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52953.json b/public/organe/PO52953.json new file mode 100644 index 0000000..3ffd77f --- /dev/null +++ b/public/organe/PO52953.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52953", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52954.json b/public/organe/PO52954.json new file mode 100644 index 0000000..371ab69 --- /dev/null +++ b/public/organe/PO52954.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52954", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52955.json b/public/organe/PO52955.json new file mode 100644 index 0000000..c4fcc7e --- /dev/null +++ b/public/organe/PO52955.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52955", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52956.json b/public/organe/PO52956.json new file mode 100644 index 0000000..31ec927 --- /dev/null +++ b/public/organe/PO52956.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52956", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52957.json b/public/organe/PO52957.json new file mode 100644 index 0000000..0b480b2 --- /dev/null +++ b/public/organe/PO52957.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52957", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52958.json b/public/organe/PO52958.json new file mode 100644 index 0000000..5343f1e --- /dev/null +++ b/public/organe/PO52958.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52958", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52959.json b/public/organe/PO52959.json new file mode 100644 index 0000000..11ae2db --- /dev/null +++ b/public/organe/PO52959.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52959", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52960.json b/public/organe/PO52960.json new file mode 100644 index 0000000..94395f2 --- /dev/null +++ b/public/organe/PO52960.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52960", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52961.json b/public/organe/PO52961.json new file mode 100644 index 0000000..6bed484 --- /dev/null +++ b/public/organe/PO52961.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52961", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52962.json b/public/organe/PO52962.json new file mode 100644 index 0000000..02db0fb --- /dev/null +++ b/public/organe/PO52962.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52962", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52963.json b/public/organe/PO52963.json new file mode 100644 index 0000000..a504c92 --- /dev/null +++ b/public/organe/PO52963.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52963", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52964.json b/public/organe/PO52964.json new file mode 100644 index 0000000..4fdbb43 --- /dev/null +++ b/public/organe/PO52964.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52964", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO52965.json b/public/organe/PO52965.json new file mode 100644 index 0000000..fb71252 --- /dev/null +++ b/public/organe/PO52965.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52965", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52966.json b/public/organe/PO52966.json new file mode 100644 index 0000000..c768589 --- /dev/null +++ b/public/organe/PO52966.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52966", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52967.json b/public/organe/PO52967.json new file mode 100644 index 0000000..efe202f --- /dev/null +++ b/public/organe/PO52967.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52967", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52968.json b/public/organe/PO52968.json new file mode 100644 index 0000000..5abecd5 --- /dev/null +++ b/public/organe/PO52968.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52968", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52969.json b/public/organe/PO52969.json new file mode 100644 index 0000000..809e044 --- /dev/null +++ b/public/organe/PO52969.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52969", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52970.json b/public/organe/PO52970.json new file mode 100644 index 0000000..efcbfff --- /dev/null +++ b/public/organe/PO52970.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52970", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52971.json b/public/organe/PO52971.json new file mode 100644 index 0000000..6e232db --- /dev/null +++ b/public/organe/PO52971.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52971", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52972.json b/public/organe/PO52972.json new file mode 100644 index 0000000..d82ad10 --- /dev/null +++ b/public/organe/PO52972.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52972", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52973.json b/public/organe/PO52973.json new file mode 100644 index 0000000..8ff30f1 --- /dev/null +++ b/public/organe/PO52973.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52973", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52974.json b/public/organe/PO52974.json new file mode 100644 index 0000000..6b64943 --- /dev/null +++ b/public/organe/PO52974.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52974", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52975.json b/public/organe/PO52975.json new file mode 100644 index 0000000..3bcf81a --- /dev/null +++ b/public/organe/PO52975.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52975", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52976.json b/public/organe/PO52976.json new file mode 100644 index 0000000..3d7b9db --- /dev/null +++ b/public/organe/PO52976.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52976", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52977.json b/public/organe/PO52977.json new file mode 100644 index 0000000..1bcb832 --- /dev/null +++ b/public/organe/PO52977.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52977", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52978.json b/public/organe/PO52978.json new file mode 100644 index 0000000..9fed7e5 --- /dev/null +++ b/public/organe/PO52978.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52978", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52979.json b/public/organe/PO52979.json new file mode 100644 index 0000000..e47021c --- /dev/null +++ b/public/organe/PO52979.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52979", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52980.json b/public/organe/PO52980.json new file mode 100644 index 0000000..a72e843 --- /dev/null +++ b/public/organe/PO52980.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52980", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52981.json b/public/organe/PO52981.json new file mode 100644 index 0000000..e61f67e --- /dev/null +++ b/public/organe/PO52981.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52981", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52982.json b/public/organe/PO52982.json new file mode 100644 index 0000000..7251545 --- /dev/null +++ b/public/organe/PO52982.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52982", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52983.json b/public/organe/PO52983.json new file mode 100644 index 0000000..c604a87 --- /dev/null +++ b/public/organe/PO52983.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52983", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52984.json b/public/organe/PO52984.json new file mode 100644 index 0000000..1423e81 --- /dev/null +++ b/public/organe/PO52984.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52984", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52985.json b/public/organe/PO52985.json new file mode 100644 index 0000000..71d71fe --- /dev/null +++ b/public/organe/PO52985.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52985", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52986.json b/public/organe/PO52986.json new file mode 100644 index 0000000..2e43e69 --- /dev/null +++ b/public/organe/PO52986.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52986", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52987.json b/public/organe/PO52987.json new file mode 100644 index 0000000..8939f35 --- /dev/null +++ b/public/organe/PO52987.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52987", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52988.json b/public/organe/PO52988.json new file mode 100644 index 0000000..18f6315 --- /dev/null +++ b/public/organe/PO52988.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52988", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52989.json b/public/organe/PO52989.json new file mode 100644 index 0000000..a4f2214 --- /dev/null +++ b/public/organe/PO52989.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52989", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52990.json b/public/organe/PO52990.json new file mode 100644 index 0000000..7ea4cb7 --- /dev/null +++ b/public/organe/PO52990.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52990", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52991.json b/public/organe/PO52991.json new file mode 100644 index 0000000..ce08c2e --- /dev/null +++ b/public/organe/PO52991.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52991", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52992.json b/public/organe/PO52992.json new file mode 100644 index 0000000..a1e0578 --- /dev/null +++ b/public/organe/PO52992.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52992", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52993.json b/public/organe/PO52993.json new file mode 100644 index 0000000..25b6182 --- /dev/null +++ b/public/organe/PO52993.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52993", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52994.json b/public/organe/PO52994.json new file mode 100644 index 0000000..64b120e --- /dev/null +++ b/public/organe/PO52994.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52994", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52995.json b/public/organe/PO52995.json new file mode 100644 index 0000000..9bb293c --- /dev/null +++ b/public/organe/PO52995.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52995", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52996.json b/public/organe/PO52996.json new file mode 100644 index 0000000..c2bdb4d --- /dev/null +++ b/public/organe/PO52996.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52996", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52997.json b/public/organe/PO52997.json new file mode 100644 index 0000000..3008881 --- /dev/null +++ b/public/organe/PO52997.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52997", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52998.json b/public/organe/PO52998.json new file mode 100644 index 0000000..d2c8d04 --- /dev/null +++ b/public/organe/PO52998.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52998", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO52999.json b/public/organe/PO52999.json new file mode 100644 index 0000000..36ab178 --- /dev/null +++ b/public/organe/PO52999.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO52999", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO53000.json b/public/organe/PO53000.json new file mode 100644 index 0000000..6588769 --- /dev/null +++ b/public/organe/PO53000.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53000", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO53001.json b/public/organe/PO53001.json new file mode 100644 index 0000000..9b989fb --- /dev/null +++ b/public/organe/PO53001.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53001", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO53002.json b/public/organe/PO53002.json new file mode 100644 index 0000000..7dc5144 --- /dev/null +++ b/public/organe/PO53002.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53002", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO53003.json b/public/organe/PO53003.json new file mode 100644 index 0000000..479513e --- /dev/null +++ b/public/organe/PO53003.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53003", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO53004.json b/public/organe/PO53004.json new file mode 100644 index 0000000..864b9a5 --- /dev/null +++ b/public/organe/PO53004.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53004", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53005.json b/public/organe/PO53005.json new file mode 100644 index 0000000..5efa46b --- /dev/null +++ b/public/organe/PO53005.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53005", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53006.json b/public/organe/PO53006.json new file mode 100644 index 0000000..4a03e46 --- /dev/null +++ b/public/organe/PO53006.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53006", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53007.json b/public/organe/PO53007.json new file mode 100644 index 0000000..cfd8b16 --- /dev/null +++ b/public/organe/PO53007.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53007", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53008.json b/public/organe/PO53008.json new file mode 100644 index 0000000..bf42ece --- /dev/null +++ b/public/organe/PO53008.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53008", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53009.json b/public/organe/PO53009.json new file mode 100644 index 0000000..6b3b2c5 --- /dev/null +++ b/public/organe/PO53009.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53009", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53010.json b/public/organe/PO53010.json new file mode 100644 index 0000000..1cc2a22 --- /dev/null +++ b/public/organe/PO53010.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53010", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53011.json b/public/organe/PO53011.json new file mode 100644 index 0000000..9c1d81c --- /dev/null +++ b/public/organe/PO53011.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53011", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53012.json b/public/organe/PO53012.json new file mode 100644 index 0000000..03f6395 --- /dev/null +++ b/public/organe/PO53012.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53012", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53013.json b/public/organe/PO53013.json new file mode 100644 index 0000000..b40572f --- /dev/null +++ b/public/organe/PO53013.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53013", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53014.json b/public/organe/PO53014.json new file mode 100644 index 0000000..c5e1141 --- /dev/null +++ b/public/organe/PO53014.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53014", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53015.json b/public/organe/PO53015.json new file mode 100644 index 0000000..3dcf630 --- /dev/null +++ b/public/organe/PO53015.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53015", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53016.json b/public/organe/PO53016.json new file mode 100644 index 0000000..6618671 --- /dev/null +++ b/public/organe/PO53016.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53016", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53017.json b/public/organe/PO53017.json new file mode 100644 index 0000000..012b5fc --- /dev/null +++ b/public/organe/PO53017.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53017", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53018.json b/public/organe/PO53018.json new file mode 100644 index 0000000..5b53775 --- /dev/null +++ b/public/organe/PO53018.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53018", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53019.json b/public/organe/PO53019.json new file mode 100644 index 0000000..5085a68 --- /dev/null +++ b/public/organe/PO53019.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53019", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53020.json b/public/organe/PO53020.json new file mode 100644 index 0000000..1cee584 --- /dev/null +++ b/public/organe/PO53020.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53020", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53021.json b/public/organe/PO53021.json new file mode 100644 index 0000000..6a266d1 --- /dev/null +++ b/public/organe/PO53021.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53021", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53022.json b/public/organe/PO53022.json new file mode 100644 index 0000000..bcd8c7a --- /dev/null +++ b/public/organe/PO53022.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53022", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53023.json b/public/organe/PO53023.json new file mode 100644 index 0000000..812302b --- /dev/null +++ b/public/organe/PO53023.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53023", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53024.json b/public/organe/PO53024.json new file mode 100644 index 0000000..9cbff4f --- /dev/null +++ b/public/organe/PO53024.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53024", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53025.json b/public/organe/PO53025.json new file mode 100644 index 0000000..425c1e8 --- /dev/null +++ b/public/organe/PO53025.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53025", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53026.json b/public/organe/PO53026.json new file mode 100644 index 0000000..7b0921e --- /dev/null +++ b/public/organe/PO53026.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53026", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53027.json b/public/organe/PO53027.json new file mode 100644 index 0000000..f163d8b --- /dev/null +++ b/public/organe/PO53027.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53027", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53028.json b/public/organe/PO53028.json new file mode 100644 index 0000000..7966806 --- /dev/null +++ b/public/organe/PO53028.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53028", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53029.json b/public/organe/PO53029.json new file mode 100644 index 0000000..f6cf15a --- /dev/null +++ b/public/organe/PO53029.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53029", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53030.json b/public/organe/PO53030.json new file mode 100644 index 0000000..f732811 --- /dev/null +++ b/public/organe/PO53030.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53030", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53031.json b/public/organe/PO53031.json new file mode 100644 index 0000000..e0ed084 --- /dev/null +++ b/public/organe/PO53031.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53031", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53032.json b/public/organe/PO53032.json new file mode 100644 index 0000000..a1acd78 --- /dev/null +++ b/public/organe/PO53032.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53032", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53033.json b/public/organe/PO53033.json new file mode 100644 index 0000000..ffc1d97 --- /dev/null +++ b/public/organe/PO53033.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53033", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53034.json b/public/organe/PO53034.json new file mode 100644 index 0000000..e279af9 --- /dev/null +++ b/public/organe/PO53034.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53034", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53035.json b/public/organe/PO53035.json new file mode 100644 index 0000000..15aa1ac --- /dev/null +++ b/public/organe/PO53035.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53035", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53036.json b/public/organe/PO53036.json new file mode 100644 index 0000000..437d629 --- /dev/null +++ b/public/organe/PO53036.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53036", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53037.json b/public/organe/PO53037.json new file mode 100644 index 0000000..7fd56cf --- /dev/null +++ b/public/organe/PO53037.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53037", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53038.json b/public/organe/PO53038.json new file mode 100644 index 0000000..07efea8 --- /dev/null +++ b/public/organe/PO53038.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53038", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53039.json b/public/organe/PO53039.json new file mode 100644 index 0000000..cc2602c --- /dev/null +++ b/public/organe/PO53039.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53039", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53040.json b/public/organe/PO53040.json new file mode 100644 index 0000000..a2094d2 --- /dev/null +++ b/public/organe/PO53040.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53040", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53041.json b/public/organe/PO53041.json new file mode 100644 index 0000000..b0d8e99 --- /dev/null +++ b/public/organe/PO53041.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53041", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53042.json b/public/organe/PO53042.json new file mode 100644 index 0000000..3c60d93 --- /dev/null +++ b/public/organe/PO53042.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53042", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53043.json b/public/organe/PO53043.json new file mode 100644 index 0000000..d04c9d0 --- /dev/null +++ b/public/organe/PO53043.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53043", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53044.json b/public/organe/PO53044.json new file mode 100644 index 0000000..8393e73 --- /dev/null +++ b/public/organe/PO53044.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53044", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53045.json b/public/organe/PO53045.json new file mode 100644 index 0000000..3e173c9 --- /dev/null +++ b/public/organe/PO53045.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53045", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53046.json b/public/organe/PO53046.json new file mode 100644 index 0000000..9f66eec --- /dev/null +++ b/public/organe/PO53046.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53046", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53047.json b/public/organe/PO53047.json new file mode 100644 index 0000000..1e29242 --- /dev/null +++ b/public/organe/PO53047.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53047", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53048.json b/public/organe/PO53048.json new file mode 100644 index 0000000..1110e5d --- /dev/null +++ b/public/organe/PO53048.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53048", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53049.json b/public/organe/PO53049.json new file mode 100644 index 0000000..21b982e --- /dev/null +++ b/public/organe/PO53049.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53049", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53050.json b/public/organe/PO53050.json new file mode 100644 index 0000000..1b23d08 --- /dev/null +++ b/public/organe/PO53050.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53050", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53051.json b/public/organe/PO53051.json new file mode 100644 index 0000000..b7c0fab --- /dev/null +++ b/public/organe/PO53051.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53051", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53052.json b/public/organe/PO53052.json new file mode 100644 index 0000000..d345098 --- /dev/null +++ b/public/organe/PO53052.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53052", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53053.json b/public/organe/PO53053.json new file mode 100644 index 0000000..8f68f83 --- /dev/null +++ b/public/organe/PO53053.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53053", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53054.json b/public/organe/PO53054.json new file mode 100644 index 0000000..2b2591a --- /dev/null +++ b/public/organe/PO53054.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53054", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53055.json b/public/organe/PO53055.json new file mode 100644 index 0000000..aa3e2d2 --- /dev/null +++ b/public/organe/PO53055.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53055", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53056.json b/public/organe/PO53056.json new file mode 100644 index 0000000..9ee2caa --- /dev/null +++ b/public/organe/PO53056.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53056", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53057.json b/public/organe/PO53057.json new file mode 100644 index 0000000..e33b0e6 --- /dev/null +++ b/public/organe/PO53057.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53057", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53058.json b/public/organe/PO53058.json new file mode 100644 index 0000000..376a02d --- /dev/null +++ b/public/organe/PO53058.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53058", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53059.json b/public/organe/PO53059.json new file mode 100644 index 0000000..b9860af --- /dev/null +++ b/public/organe/PO53059.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53059", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53060.json b/public/organe/PO53060.json new file mode 100644 index 0000000..bed651a --- /dev/null +++ b/public/organe/PO53060.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53060", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53061.json b/public/organe/PO53061.json new file mode 100644 index 0000000..09618b1 --- /dev/null +++ b/public/organe/PO53061.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53061", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53062.json b/public/organe/PO53062.json new file mode 100644 index 0000000..d4dbba2 --- /dev/null +++ b/public/organe/PO53062.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53062", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53063.json b/public/organe/PO53063.json new file mode 100644 index 0000000..38f45ed --- /dev/null +++ b/public/organe/PO53063.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53063", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53064.json b/public/organe/PO53064.json new file mode 100644 index 0000000..73361a4 --- /dev/null +++ b/public/organe/PO53064.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53064", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53065.json b/public/organe/PO53065.json new file mode 100644 index 0000000..3e2002c --- /dev/null +++ b/public/organe/PO53065.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53065", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53066.json b/public/organe/PO53066.json new file mode 100644 index 0000000..fb9f2f5 --- /dev/null +++ b/public/organe/PO53066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53066", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53067.json b/public/organe/PO53067.json new file mode 100644 index 0000000..2dbeec9 --- /dev/null +++ b/public/organe/PO53067.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53067", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53068.json b/public/organe/PO53068.json new file mode 100644 index 0000000..58aa6b0 --- /dev/null +++ b/public/organe/PO53068.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53068", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53069.json b/public/organe/PO53069.json new file mode 100644 index 0000000..6799e1e --- /dev/null +++ b/public/organe/PO53069.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53069", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53070.json b/public/organe/PO53070.json new file mode 100644 index 0000000..62069f2 --- /dev/null +++ b/public/organe/PO53070.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53070", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53071.json b/public/organe/PO53071.json new file mode 100644 index 0000000..12ed188 --- /dev/null +++ b/public/organe/PO53071.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53071", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53072.json b/public/organe/PO53072.json new file mode 100644 index 0000000..a655c92 --- /dev/null +++ b/public/organe/PO53072.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53072", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53073.json b/public/organe/PO53073.json new file mode 100644 index 0000000..c823830 --- /dev/null +++ b/public/organe/PO53073.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53073", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53074.json b/public/organe/PO53074.json new file mode 100644 index 0000000..29fd351 --- /dev/null +++ b/public/organe/PO53074.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53074", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53075.json b/public/organe/PO53075.json new file mode 100644 index 0000000..cacf6f1 --- /dev/null +++ b/public/organe/PO53075.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53075", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53076.json b/public/organe/PO53076.json new file mode 100644 index 0000000..346623e --- /dev/null +++ b/public/organe/PO53076.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53076", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53077.json b/public/organe/PO53077.json new file mode 100644 index 0000000..33d1184 --- /dev/null +++ b/public/organe/PO53077.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53077", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53078.json b/public/organe/PO53078.json new file mode 100644 index 0000000..4192336 --- /dev/null +++ b/public/organe/PO53078.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53078", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53079.json b/public/organe/PO53079.json new file mode 100644 index 0000000..97c59e6 --- /dev/null +++ b/public/organe/PO53079.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53079", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53080.json b/public/organe/PO53080.json new file mode 100644 index 0000000..ac3a6dc --- /dev/null +++ b/public/organe/PO53080.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53080", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53081.json b/public/organe/PO53081.json new file mode 100644 index 0000000..d2b4933 --- /dev/null +++ b/public/organe/PO53081.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53081", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53082.json b/public/organe/PO53082.json new file mode 100644 index 0000000..8d11d17 --- /dev/null +++ b/public/organe/PO53082.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53082", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53083.json b/public/organe/PO53083.json new file mode 100644 index 0000000..239a4e5 --- /dev/null +++ b/public/organe/PO53083.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53083", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53084.json b/public/organe/PO53084.json new file mode 100644 index 0000000..4dacb39 --- /dev/null +++ b/public/organe/PO53084.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53084", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53085.json b/public/organe/PO53085.json new file mode 100644 index 0000000..6b5993b --- /dev/null +++ b/public/organe/PO53085.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53085", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO53086.json b/public/organe/PO53086.json new file mode 100644 index 0000000..74de68d --- /dev/null +++ b/public/organe/PO53086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53086", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53087.json b/public/organe/PO53087.json new file mode 100644 index 0000000..35d0ed3 --- /dev/null +++ b/public/organe/PO53087.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53087", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53088.json b/public/organe/PO53088.json new file mode 100644 index 0000000..5c0de6a --- /dev/null +++ b/public/organe/PO53088.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53088", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53089.json b/public/organe/PO53089.json new file mode 100644 index 0000000..c8d1e8c --- /dev/null +++ b/public/organe/PO53089.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53089", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53090.json b/public/organe/PO53090.json new file mode 100644 index 0000000..f7a7c5c --- /dev/null +++ b/public/organe/PO53090.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53090", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53091.json b/public/organe/PO53091.json new file mode 100644 index 0000000..e01fcd5 --- /dev/null +++ b/public/organe/PO53091.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53091", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53092.json b/public/organe/PO53092.json new file mode 100644 index 0000000..0c2f198 --- /dev/null +++ b/public/organe/PO53092.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53092", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53093.json b/public/organe/PO53093.json new file mode 100644 index 0000000..a5a8a97 --- /dev/null +++ b/public/organe/PO53093.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53093", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53094.json b/public/organe/PO53094.json new file mode 100644 index 0000000..f8afb60 --- /dev/null +++ b/public/organe/PO53094.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53094", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53096.json b/public/organe/PO53096.json new file mode 100644 index 0000000..1198f2d --- /dev/null +++ b/public/organe/PO53096.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53096", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53097.json b/public/organe/PO53097.json new file mode 100644 index 0000000..d31dd70 --- /dev/null +++ b/public/organe/PO53097.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53097", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53098.json b/public/organe/PO53098.json new file mode 100644 index 0000000..dc2b353 --- /dev/null +++ b/public/organe/PO53098.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53098", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53099.json b/public/organe/PO53099.json new file mode 100644 index 0000000..b96defb --- /dev/null +++ b/public/organe/PO53099.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53099", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53100.json b/public/organe/PO53100.json new file mode 100644 index 0000000..71aef25 --- /dev/null +++ b/public/organe/PO53100.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53100", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53101.json b/public/organe/PO53101.json new file mode 100644 index 0000000..f1fb141 --- /dev/null +++ b/public/organe/PO53101.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53101", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53102.json b/public/organe/PO53102.json new file mode 100644 index 0000000..816a72d --- /dev/null +++ b/public/organe/PO53102.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53102", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53103.json b/public/organe/PO53103.json new file mode 100644 index 0000000..9bff98b --- /dev/null +++ b/public/organe/PO53103.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53103", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53104.json b/public/organe/PO53104.json new file mode 100644 index 0000000..29909ff --- /dev/null +++ b/public/organe/PO53104.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53104", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53105.json b/public/organe/PO53105.json new file mode 100644 index 0000000..bbc1ac2 --- /dev/null +++ b/public/organe/PO53105.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53105", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53106.json b/public/organe/PO53106.json new file mode 100644 index 0000000..9685486 --- /dev/null +++ b/public/organe/PO53106.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53106", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53107.json b/public/organe/PO53107.json new file mode 100644 index 0000000..fae4adf --- /dev/null +++ b/public/organe/PO53107.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53107", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53108.json b/public/organe/PO53108.json new file mode 100644 index 0000000..9befad9 --- /dev/null +++ b/public/organe/PO53108.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53108", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53109.json b/public/organe/PO53109.json new file mode 100644 index 0000000..cbcb741 --- /dev/null +++ b/public/organe/PO53109.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53109", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53110.json b/public/organe/PO53110.json new file mode 100644 index 0000000..69100b4 --- /dev/null +++ b/public/organe/PO53110.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53110", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53111.json b/public/organe/PO53111.json new file mode 100644 index 0000000..698d770 --- /dev/null +++ b/public/organe/PO53111.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53111", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53112.json b/public/organe/PO53112.json new file mode 100644 index 0000000..d0ff8ea --- /dev/null +++ b/public/organe/PO53112.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53112", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53113.json b/public/organe/PO53113.json new file mode 100644 index 0000000..24868c7 --- /dev/null +++ b/public/organe/PO53113.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53113", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53114.json b/public/organe/PO53114.json new file mode 100644 index 0000000..6ae796d --- /dev/null +++ b/public/organe/PO53114.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53114", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53115.json b/public/organe/PO53115.json new file mode 100644 index 0000000..d2062fe --- /dev/null +++ b/public/organe/PO53115.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53115", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53116.json b/public/organe/PO53116.json new file mode 100644 index 0000000..2e109d0 --- /dev/null +++ b/public/organe/PO53116.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53116", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53117.json b/public/organe/PO53117.json new file mode 100644 index 0000000..a62496d --- /dev/null +++ b/public/organe/PO53117.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53117", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53118.json b/public/organe/PO53118.json new file mode 100644 index 0000000..3b6a914 --- /dev/null +++ b/public/organe/PO53118.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53118", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53119.json b/public/organe/PO53119.json new file mode 100644 index 0000000..8cefbfc --- /dev/null +++ b/public/organe/PO53119.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53119", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53120.json b/public/organe/PO53120.json new file mode 100644 index 0000000..4211858 --- /dev/null +++ b/public/organe/PO53120.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53120", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53121.json b/public/organe/PO53121.json new file mode 100644 index 0000000..f6a0d47 --- /dev/null +++ b/public/organe/PO53121.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53121", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53122.json b/public/organe/PO53122.json new file mode 100644 index 0000000..47fa18b --- /dev/null +++ b/public/organe/PO53122.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53122", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53123.json b/public/organe/PO53123.json new file mode 100644 index 0000000..2a4440f --- /dev/null +++ b/public/organe/PO53123.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53123", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53124.json b/public/organe/PO53124.json new file mode 100644 index 0000000..5f807af --- /dev/null +++ b/public/organe/PO53124.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53124", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53125.json b/public/organe/PO53125.json new file mode 100644 index 0000000..dae99dc --- /dev/null +++ b/public/organe/PO53125.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53125", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53126.json b/public/organe/PO53126.json new file mode 100644 index 0000000..7323ad4 --- /dev/null +++ b/public/organe/PO53126.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53126", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53127.json b/public/organe/PO53127.json new file mode 100644 index 0000000..d3b80b6 --- /dev/null +++ b/public/organe/PO53127.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53127", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53128.json b/public/organe/PO53128.json new file mode 100644 index 0000000..ad21575 --- /dev/null +++ b/public/organe/PO53128.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53128", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53129.json b/public/organe/PO53129.json new file mode 100644 index 0000000..d65bef0 --- /dev/null +++ b/public/organe/PO53129.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53129", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53130.json b/public/organe/PO53130.json new file mode 100644 index 0000000..7a58df6 --- /dev/null +++ b/public/organe/PO53130.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53130", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53131.json b/public/organe/PO53131.json new file mode 100644 index 0000000..2edbbb8 --- /dev/null +++ b/public/organe/PO53131.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53131", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53132.json b/public/organe/PO53132.json new file mode 100644 index 0000000..b5ded59 --- /dev/null +++ b/public/organe/PO53132.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53132", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53133.json b/public/organe/PO53133.json new file mode 100644 index 0000000..7cdefc4 --- /dev/null +++ b/public/organe/PO53133.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53133", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53134.json b/public/organe/PO53134.json new file mode 100644 index 0000000..ff6484f --- /dev/null +++ b/public/organe/PO53134.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53134", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53135.json b/public/organe/PO53135.json new file mode 100644 index 0000000..4bba667 --- /dev/null +++ b/public/organe/PO53135.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53135", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53136.json b/public/organe/PO53136.json new file mode 100644 index 0000000..7006f4f --- /dev/null +++ b/public/organe/PO53136.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53136", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53137.json b/public/organe/PO53137.json new file mode 100644 index 0000000..968128a --- /dev/null +++ b/public/organe/PO53137.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53137", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53138.json b/public/organe/PO53138.json new file mode 100644 index 0000000..6abce3a --- /dev/null +++ b/public/organe/PO53138.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53138", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53139.json b/public/organe/PO53139.json new file mode 100644 index 0000000..b95d855 --- /dev/null +++ b/public/organe/PO53139.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53139", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53140.json b/public/organe/PO53140.json new file mode 100644 index 0000000..05f9ebe --- /dev/null +++ b/public/organe/PO53140.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53140", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53141.json b/public/organe/PO53141.json new file mode 100644 index 0000000..2cc7ebc --- /dev/null +++ b/public/organe/PO53141.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53141", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO53142.json b/public/organe/PO53142.json new file mode 100644 index 0000000..e873fa3 --- /dev/null +++ b/public/organe/PO53142.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53142", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53143.json b/public/organe/PO53143.json new file mode 100644 index 0000000..716d166 --- /dev/null +++ b/public/organe/PO53143.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53143", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53144.json b/public/organe/PO53144.json new file mode 100644 index 0000000..d159f95 --- /dev/null +++ b/public/organe/PO53144.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53144", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53145.json b/public/organe/PO53145.json new file mode 100644 index 0000000..8c02a44 --- /dev/null +++ b/public/organe/PO53145.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53145", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53146.json b/public/organe/PO53146.json new file mode 100644 index 0000000..406ae90 --- /dev/null +++ b/public/organe/PO53146.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53146", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53147.json b/public/organe/PO53147.json new file mode 100644 index 0000000..a71bf52 --- /dev/null +++ b/public/organe/PO53147.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53147", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53148.json b/public/organe/PO53148.json new file mode 100644 index 0000000..5be79cd --- /dev/null +++ b/public/organe/PO53148.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53148", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53149.json b/public/organe/PO53149.json new file mode 100644 index 0000000..0151763 --- /dev/null +++ b/public/organe/PO53149.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53149", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53150.json b/public/organe/PO53150.json new file mode 100644 index 0000000..92ffebb --- /dev/null +++ b/public/organe/PO53150.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53150", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53151.json b/public/organe/PO53151.json new file mode 100644 index 0000000..58c7d74 --- /dev/null +++ b/public/organe/PO53151.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53151", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53152.json b/public/organe/PO53152.json new file mode 100644 index 0000000..a66e447 --- /dev/null +++ b/public/organe/PO53152.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53152", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53153.json b/public/organe/PO53153.json new file mode 100644 index 0000000..a851426 --- /dev/null +++ b/public/organe/PO53153.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53153", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53154.json b/public/organe/PO53154.json new file mode 100644 index 0000000..9b521dc --- /dev/null +++ b/public/organe/PO53154.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53154", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53155.json b/public/organe/PO53155.json new file mode 100644 index 0000000..3e7e826 --- /dev/null +++ b/public/organe/PO53155.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53155", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53156.json b/public/organe/PO53156.json new file mode 100644 index 0000000..ce6af6f --- /dev/null +++ b/public/organe/PO53156.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53156", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53157.json b/public/organe/PO53157.json new file mode 100644 index 0000000..11a9caa --- /dev/null +++ b/public/organe/PO53157.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53157", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53158.json b/public/organe/PO53158.json new file mode 100644 index 0000000..1e82b7d --- /dev/null +++ b/public/organe/PO53158.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53158", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53159.json b/public/organe/PO53159.json new file mode 100644 index 0000000..2904a54 --- /dev/null +++ b/public/organe/PO53159.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53159", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53161.json b/public/organe/PO53161.json new file mode 100644 index 0000000..35b3cdd --- /dev/null +++ b/public/organe/PO53161.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53161", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53162.json b/public/organe/PO53162.json new file mode 100644 index 0000000..f489704 --- /dev/null +++ b/public/organe/PO53162.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53162", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53163.json b/public/organe/PO53163.json new file mode 100644 index 0000000..eaca125 --- /dev/null +++ b/public/organe/PO53163.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53163", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53164.json b/public/organe/PO53164.json new file mode 100644 index 0000000..b917e2f --- /dev/null +++ b/public/organe/PO53164.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53164", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53165.json b/public/organe/PO53165.json new file mode 100644 index 0000000..c62b47a --- /dev/null +++ b/public/organe/PO53165.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53165", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53166.json b/public/organe/PO53166.json new file mode 100644 index 0000000..be9301f --- /dev/null +++ b/public/organe/PO53166.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53166", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53167.json b/public/organe/PO53167.json new file mode 100644 index 0000000..f4b3f4d --- /dev/null +++ b/public/organe/PO53167.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53167", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53168.json b/public/organe/PO53168.json new file mode 100644 index 0000000..50b99b7 --- /dev/null +++ b/public/organe/PO53168.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53168", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53169.json b/public/organe/PO53169.json new file mode 100644 index 0000000..699ed74 --- /dev/null +++ b/public/organe/PO53169.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53169", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53170.json b/public/organe/PO53170.json new file mode 100644 index 0000000..6333924 --- /dev/null +++ b/public/organe/PO53170.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53170", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53171.json b/public/organe/PO53171.json new file mode 100644 index 0000000..ba911e8 --- /dev/null +++ b/public/organe/PO53171.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53171", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53172.json b/public/organe/PO53172.json new file mode 100644 index 0000000..d8aa6f3 --- /dev/null +++ b/public/organe/PO53172.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53172", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53173.json b/public/organe/PO53173.json new file mode 100644 index 0000000..3959a5d --- /dev/null +++ b/public/organe/PO53173.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53173", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53174.json b/public/organe/PO53174.json new file mode 100644 index 0000000..7476d1b --- /dev/null +++ b/public/organe/PO53174.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53174", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53175.json b/public/organe/PO53175.json new file mode 100644 index 0000000..86a3565 --- /dev/null +++ b/public/organe/PO53175.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53175", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53176.json b/public/organe/PO53176.json new file mode 100644 index 0000000..8f7fad2 --- /dev/null +++ b/public/organe/PO53176.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53176", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53177.json b/public/organe/PO53177.json new file mode 100644 index 0000000..78a6717 --- /dev/null +++ b/public/organe/PO53177.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53177", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53178.json b/public/organe/PO53178.json new file mode 100644 index 0000000..99cafaf --- /dev/null +++ b/public/organe/PO53178.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53178", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53179.json b/public/organe/PO53179.json new file mode 100644 index 0000000..fc1651e --- /dev/null +++ b/public/organe/PO53179.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53179", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53180.json b/public/organe/PO53180.json new file mode 100644 index 0000000..ebf3b3e --- /dev/null +++ b/public/organe/PO53180.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53180", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53181.json b/public/organe/PO53181.json new file mode 100644 index 0000000..88a196b --- /dev/null +++ b/public/organe/PO53181.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53181", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53182.json b/public/organe/PO53182.json new file mode 100644 index 0000000..e78b5b9 --- /dev/null +++ b/public/organe/PO53182.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53182", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53183.json b/public/organe/PO53183.json new file mode 100644 index 0000000..fb79324 --- /dev/null +++ b/public/organe/PO53183.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53183", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53184.json b/public/organe/PO53184.json new file mode 100644 index 0000000..f847bbe --- /dev/null +++ b/public/organe/PO53184.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53184", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53185.json b/public/organe/PO53185.json new file mode 100644 index 0000000..74913bf --- /dev/null +++ b/public/organe/PO53185.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53185", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53186.json b/public/organe/PO53186.json new file mode 100644 index 0000000..070d163 --- /dev/null +++ b/public/organe/PO53186.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53186", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53187.json b/public/organe/PO53187.json new file mode 100644 index 0000000..1d211c7 --- /dev/null +++ b/public/organe/PO53187.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53187", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53188.json b/public/organe/PO53188.json new file mode 100644 index 0000000..d06a5e0 --- /dev/null +++ b/public/organe/PO53188.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53188", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53189.json b/public/organe/PO53189.json new file mode 100644 index 0000000..a448ce9 --- /dev/null +++ b/public/organe/PO53189.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53189", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53190.json b/public/organe/PO53190.json new file mode 100644 index 0000000..b651ea0 --- /dev/null +++ b/public/organe/PO53190.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53190", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53191.json b/public/organe/PO53191.json new file mode 100644 index 0000000..fb8d6ca --- /dev/null +++ b/public/organe/PO53191.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53191", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53192.json b/public/organe/PO53192.json new file mode 100644 index 0000000..bf80de3 --- /dev/null +++ b/public/organe/PO53192.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53192", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53193.json b/public/organe/PO53193.json new file mode 100644 index 0000000..674d6df --- /dev/null +++ b/public/organe/PO53193.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53193", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53194.json b/public/organe/PO53194.json new file mode 100644 index 0000000..01b0934 --- /dev/null +++ b/public/organe/PO53194.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53194", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53195.json b/public/organe/PO53195.json new file mode 100644 index 0000000..6ea23d0 --- /dev/null +++ b/public/organe/PO53195.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53195", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53196.json b/public/organe/PO53196.json new file mode 100644 index 0000000..004ec3d --- /dev/null +++ b/public/organe/PO53196.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53196", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53197.json b/public/organe/PO53197.json new file mode 100644 index 0000000..543ba96 --- /dev/null +++ b/public/organe/PO53197.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53197", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53198.json b/public/organe/PO53198.json new file mode 100644 index 0000000..0141cd1 --- /dev/null +++ b/public/organe/PO53198.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53198", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53199.json b/public/organe/PO53199.json new file mode 100644 index 0000000..051ad0d --- /dev/null +++ b/public/organe/PO53199.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53199", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53200.json b/public/organe/PO53200.json new file mode 100644 index 0000000..9b066a8 --- /dev/null +++ b/public/organe/PO53200.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53200", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53201.json b/public/organe/PO53201.json new file mode 100644 index 0000000..1bfb964 --- /dev/null +++ b/public/organe/PO53201.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53201", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53202.json b/public/organe/PO53202.json new file mode 100644 index 0000000..d6a92bc --- /dev/null +++ b/public/organe/PO53202.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53202", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO53203.json b/public/organe/PO53203.json new file mode 100644 index 0000000..8d1802b --- /dev/null +++ b/public/organe/PO53203.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53203", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53204.json b/public/organe/PO53204.json new file mode 100644 index 0000000..cb9fbb4 --- /dev/null +++ b/public/organe/PO53204.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53204", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53205.json b/public/organe/PO53205.json new file mode 100644 index 0000000..6926e2b --- /dev/null +++ b/public/organe/PO53205.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53205", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription n\u00b0 0 du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 0\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "0", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53206.json b/public/organe/PO53206.json new file mode 100644 index 0000000..d8be9ad --- /dev/null +++ b/public/organe/PO53206.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53206", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53207.json b/public/organe/PO53207.json new file mode 100644 index 0000000..21bba7e --- /dev/null +++ b/public/organe/PO53207.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53207", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53208.json b/public/organe/PO53208.json new file mode 100644 index 0000000..3f35943 --- /dev/null +++ b/public/organe/PO53208.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53208", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53209.json b/public/organe/PO53209.json new file mode 100644 index 0000000..6dba4d0 --- /dev/null +++ b/public/organe/PO53209.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53209", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53210.json b/public/organe/PO53210.json new file mode 100644 index 0000000..6563404 --- /dev/null +++ b/public/organe/PO53210.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53210", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53211.json b/public/organe/PO53211.json new file mode 100644 index 0000000..5bf2372 --- /dev/null +++ b/public/organe/PO53211.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53211", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53212.json b/public/organe/PO53212.json new file mode 100644 index 0000000..7827ddd --- /dev/null +++ b/public/organe/PO53212.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53212", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53213.json b/public/organe/PO53213.json new file mode 100644 index 0000000..aae1fe7 --- /dev/null +++ b/public/organe/PO53213.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53213", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53214.json b/public/organe/PO53214.json new file mode 100644 index 0000000..e145bc6 --- /dev/null +++ b/public/organe/PO53214.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53214", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53215.json b/public/organe/PO53215.json new file mode 100644 index 0000000..72540e6 --- /dev/null +++ b/public/organe/PO53215.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53215", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53216.json b/public/organe/PO53216.json new file mode 100644 index 0000000..626e683 --- /dev/null +++ b/public/organe/PO53216.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53216", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53217.json b/public/organe/PO53217.json new file mode 100644 index 0000000..2ad076f --- /dev/null +++ b/public/organe/PO53217.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53217", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53218.json b/public/organe/PO53218.json new file mode 100644 index 0000000..77631b0 --- /dev/null +++ b/public/organe/PO53218.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53218", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53219.json b/public/organe/PO53219.json new file mode 100644 index 0000000..867c22c --- /dev/null +++ b/public/organe/PO53219.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53219", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53220.json b/public/organe/PO53220.json new file mode 100644 index 0000000..879568c --- /dev/null +++ b/public/organe/PO53220.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53220", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53221.json b/public/organe/PO53221.json new file mode 100644 index 0000000..54a5c11 --- /dev/null +++ b/public/organe/PO53221.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53221", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53222.json b/public/organe/PO53222.json new file mode 100644 index 0000000..9801477 --- /dev/null +++ b/public/organe/PO53222.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53222", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53223.json b/public/organe/PO53223.json new file mode 100644 index 0000000..db6019e --- /dev/null +++ b/public/organe/PO53223.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53223", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53224.json b/public/organe/PO53224.json new file mode 100644 index 0000000..e5c44af --- /dev/null +++ b/public/organe/PO53224.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53224", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53225.json b/public/organe/PO53225.json new file mode 100644 index 0000000..d4e23e5 --- /dev/null +++ b/public/organe/PO53225.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53225", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53226.json b/public/organe/PO53226.json new file mode 100644 index 0000000..3b6033a --- /dev/null +++ b/public/organe/PO53226.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53226", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53227.json b/public/organe/PO53227.json new file mode 100644 index 0000000..4b25f9b --- /dev/null +++ b/public/organe/PO53227.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53227", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53228.json b/public/organe/PO53228.json new file mode 100644 index 0000000..fd2a88f --- /dev/null +++ b/public/organe/PO53228.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53228", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53229.json b/public/organe/PO53229.json new file mode 100644 index 0000000..57f4699 --- /dev/null +++ b/public/organe/PO53229.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53229", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53230.json b/public/organe/PO53230.json new file mode 100644 index 0000000..0f1d143 --- /dev/null +++ b/public/organe/PO53230.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53230", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53231.json b/public/organe/PO53231.json new file mode 100644 index 0000000..bdf6906 --- /dev/null +++ b/public/organe/PO53231.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53231", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53232.json b/public/organe/PO53232.json new file mode 100644 index 0000000..6060d22 --- /dev/null +++ b/public/organe/PO53232.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53232", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53233.json b/public/organe/PO53233.json new file mode 100644 index 0000000..84537ba --- /dev/null +++ b/public/organe/PO53233.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53233", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53234.json b/public/organe/PO53234.json new file mode 100644 index 0000000..be322b6 --- /dev/null +++ b/public/organe/PO53234.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53234", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53235.json b/public/organe/PO53235.json new file mode 100644 index 0000000..736fec9 --- /dev/null +++ b/public/organe/PO53235.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53235", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53236.json b/public/organe/PO53236.json new file mode 100644 index 0000000..ce0f284 --- /dev/null +++ b/public/organe/PO53236.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53236", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53237.json b/public/organe/PO53237.json new file mode 100644 index 0000000..3c5aa11 --- /dev/null +++ b/public/organe/PO53237.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53237", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53238.json b/public/organe/PO53238.json new file mode 100644 index 0000000..94176c1 --- /dev/null +++ b/public/organe/PO53238.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53238", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53239.json b/public/organe/PO53239.json new file mode 100644 index 0000000..ab30717 --- /dev/null +++ b/public/organe/PO53239.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53239", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO53240.json b/public/organe/PO53240.json new file mode 100644 index 0000000..03cab09 --- /dev/null +++ b/public/organe/PO53240.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53240", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53241.json b/public/organe/PO53241.json new file mode 100644 index 0000000..6cc4994 --- /dev/null +++ b/public/organe/PO53241.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53241", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53242.json b/public/organe/PO53242.json new file mode 100644 index 0000000..1c9fc34 --- /dev/null +++ b/public/organe/PO53242.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53242", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53243.json b/public/organe/PO53243.json new file mode 100644 index 0000000..3f44289 --- /dev/null +++ b/public/organe/PO53243.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53243", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53244.json b/public/organe/PO53244.json new file mode 100644 index 0000000..4a12f53 --- /dev/null +++ b/public/organe/PO53244.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53244", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53245.json b/public/organe/PO53245.json new file mode 100644 index 0000000..65a570d --- /dev/null +++ b/public/organe/PO53245.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53245", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53246.json b/public/organe/PO53246.json new file mode 100644 index 0000000..8a05f5f --- /dev/null +++ b/public/organe/PO53246.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53246", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53247.json b/public/organe/PO53247.json new file mode 100644 index 0000000..84ed02e --- /dev/null +++ b/public/organe/PO53247.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53247", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53248.json b/public/organe/PO53248.json new file mode 100644 index 0000000..b8e8f79 --- /dev/null +++ b/public/organe/PO53248.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53248", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53249.json b/public/organe/PO53249.json new file mode 100644 index 0000000..d479e97 --- /dev/null +++ b/public/organe/PO53249.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53249", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53250.json b/public/organe/PO53250.json new file mode 100644 index 0000000..1ea95cd --- /dev/null +++ b/public/organe/PO53250.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53250", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53251.json b/public/organe/PO53251.json new file mode 100644 index 0000000..7014fae --- /dev/null +++ b/public/organe/PO53251.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53251", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53252.json b/public/organe/PO53252.json new file mode 100644 index 0000000..6b5e51b --- /dev/null +++ b/public/organe/PO53252.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53252", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53253.json b/public/organe/PO53253.json new file mode 100644 index 0000000..b0d0556 --- /dev/null +++ b/public/organe/PO53253.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53253", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53254.json b/public/organe/PO53254.json new file mode 100644 index 0000000..14fd178 --- /dev/null +++ b/public/organe/PO53254.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53254", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53255.json b/public/organe/PO53255.json new file mode 100644 index 0000000..083b958 --- /dev/null +++ b/public/organe/PO53255.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53255", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53256.json b/public/organe/PO53256.json new file mode 100644 index 0000000..645d7ec --- /dev/null +++ b/public/organe/PO53256.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53256", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO53257.json b/public/organe/PO53257.json new file mode 100644 index 0000000..0e00e17 --- /dev/null +++ b/public/organe/PO53257.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53257", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1945-11-06", "dateAgrement": null, "dateFin": "1946-06-10"}, "organeParent": null, "chambre": null, "regime": "Assembl\u00e9es nationales constituantes", "legislature": null, "numero": null, "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53259.json b/public/organe/PO53259.json new file mode 100644 index 0000000..3836749 --- /dev/null +++ b/public/organe/PO53259.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53259", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1946-11-28", "dateAgrement": null, "dateFin": "1951-07-04"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53260.json b/public/organe/PO53260.json new file mode 100644 index 0000000..99b22a4 --- /dev/null +++ b/public/organe/PO53260.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53260", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53261.json b/public/organe/PO53261.json new file mode 100644 index 0000000..60b89d3 --- /dev/null +++ b/public/organe/PO53261.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53261", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53262.json b/public/organe/PO53262.json new file mode 100644 index 0000000..81090fb --- /dev/null +++ b/public/organe/PO53262.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53262", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53263.json b/public/organe/PO53263.json new file mode 100644 index 0000000..a18872a --- /dev/null +++ b/public/organe/PO53263.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53263", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53264.json b/public/organe/PO53264.json new file mode 100644 index 0000000..fc70a10 --- /dev/null +++ b/public/organe/PO53264.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53264", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53265.json b/public/organe/PO53265.json new file mode 100644 index 0000000..7ea2a60 --- /dev/null +++ b/public/organe/PO53265.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53265", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53266.json b/public/organe/PO53266.json new file mode 100644 index 0000000..39faba7 --- /dev/null +++ b/public/organe/PO53266.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53266", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53267.json b/public/organe/PO53267.json new file mode 100644 index 0000000..8c7e3fe --- /dev/null +++ b/public/organe/PO53267.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53267", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53268.json b/public/organe/PO53268.json new file mode 100644 index 0000000..fa9fd4a --- /dev/null +++ b/public/organe/PO53268.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53268", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53269.json b/public/organe/PO53269.json new file mode 100644 index 0000000..642943f --- /dev/null +++ b/public/organe/PO53269.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53269", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53270.json b/public/organe/PO53270.json new file mode 100644 index 0000000..409c91a --- /dev/null +++ b/public/organe/PO53270.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53270", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53271.json b/public/organe/PO53271.json new file mode 100644 index 0000000..9ef90eb --- /dev/null +++ b/public/organe/PO53271.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53271", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53272.json b/public/organe/PO53272.json new file mode 100644 index 0000000..7ff81b2 --- /dev/null +++ b/public/organe/PO53272.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53272", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53273.json b/public/organe/PO53273.json new file mode 100644 index 0000000..f0a5ee6 --- /dev/null +++ b/public/organe/PO53273.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53273", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53274.json b/public/organe/PO53274.json new file mode 100644 index 0000000..47b66a3 --- /dev/null +++ b/public/organe/PO53274.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53274", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53275.json b/public/organe/PO53275.json new file mode 100644 index 0000000..cf360d8 --- /dev/null +++ b/public/organe/PO53275.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53275", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53276.json b/public/organe/PO53276.json new file mode 100644 index 0000000..dd3d655 --- /dev/null +++ b/public/organe/PO53276.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53276", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53277.json b/public/organe/PO53277.json new file mode 100644 index 0000000..9ed47f1 --- /dev/null +++ b/public/organe/PO53277.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53277", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53278.json b/public/organe/PO53278.json new file mode 100644 index 0000000..47e959f --- /dev/null +++ b/public/organe/PO53278.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53278", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53279.json b/public/organe/PO53279.json new file mode 100644 index 0000000..27b9ece --- /dev/null +++ b/public/organe/PO53279.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53279", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53280.json b/public/organe/PO53280.json new file mode 100644 index 0000000..d26c025 --- /dev/null +++ b/public/organe/PO53280.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53280", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53281.json b/public/organe/PO53281.json new file mode 100644 index 0000000..2c89247 --- /dev/null +++ b/public/organe/PO53281.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53281", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53282.json b/public/organe/PO53282.json new file mode 100644 index 0000000..76deb50 --- /dev/null +++ b/public/organe/PO53282.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53282", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53283.json b/public/organe/PO53283.json new file mode 100644 index 0000000..5597509 --- /dev/null +++ b/public/organe/PO53283.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53283", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO53284.json b/public/organe/PO53284.json new file mode 100644 index 0000000..f84f311 --- /dev/null +++ b/public/organe/PO53284.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53284", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO53285.json b/public/organe/PO53285.json new file mode 100644 index 0000000..89a413b --- /dev/null +++ b/public/organe/PO53285.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53285", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO53286.json b/public/organe/PO53286.json new file mode 100644 index 0000000..91ab720 --- /dev/null +++ b/public/organe/PO53286.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53286", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO53287.json b/public/organe/PO53287.json new file mode 100644 index 0000000..c066325 --- /dev/null +++ b/public/organe/PO53287.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53287", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO53288.json b/public/organe/PO53288.json new file mode 100644 index 0000000..70df25e --- /dev/null +++ b/public/organe/PO53288.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53288", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO53289.json b/public/organe/PO53289.json new file mode 100644 index 0000000..694a395 --- /dev/null +++ b/public/organe/PO53289.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53289", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO53290.json b/public/organe/PO53290.json new file mode 100644 index 0000000..e19e554 --- /dev/null +++ b/public/organe/PO53290.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53290", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO53291.json b/public/organe/PO53291.json new file mode 100644 index 0000000..43e0816 --- /dev/null +++ b/public/organe/PO53291.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53291", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO53292.json b/public/organe/PO53292.json new file mode 100644 index 0000000..292c0c9 --- /dev/null +++ b/public/organe/PO53292.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53292", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53293.json b/public/organe/PO53293.json new file mode 100644 index 0000000..55ea266 --- /dev/null +++ b/public/organe/PO53293.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53293", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53294.json b/public/organe/PO53294.json new file mode 100644 index 0000000..ab8d3ed --- /dev/null +++ b/public/organe/PO53294.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53294", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53295.json b/public/organe/PO53295.json new file mode 100644 index 0000000..fcd2ffb --- /dev/null +++ b/public/organe/PO53295.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53295", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53296.json b/public/organe/PO53296.json new file mode 100644 index 0000000..2edc911 --- /dev/null +++ b/public/organe/PO53296.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53296", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53297.json b/public/organe/PO53297.json new file mode 100644 index 0000000..1e2ee47 --- /dev/null +++ b/public/organe/PO53297.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53297", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53298.json b/public/organe/PO53298.json new file mode 100644 index 0000000..ed4dcd0 --- /dev/null +++ b/public/organe/PO53298.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53298", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53299.json b/public/organe/PO53299.json new file mode 100644 index 0000000..5cd483d --- /dev/null +++ b/public/organe/PO53299.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53299", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53300.json b/public/organe/PO53300.json new file mode 100644 index 0000000..f158766 --- /dev/null +++ b/public/organe/PO53300.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53300", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53301.json b/public/organe/PO53301.json new file mode 100644 index 0000000..9a6980b --- /dev/null +++ b/public/organe/PO53301.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53301", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53302.json b/public/organe/PO53302.json new file mode 100644 index 0000000..b929271 --- /dev/null +++ b/public/organe/PO53302.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53302", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53303.json b/public/organe/PO53303.json new file mode 100644 index 0000000..fd912b4 --- /dev/null +++ b/public/organe/PO53303.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53303", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53304.json b/public/organe/PO53304.json new file mode 100644 index 0000000..ee8e20f --- /dev/null +++ b/public/organe/PO53304.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53304", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "5", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53305.json b/public/organe/PO53305.json new file mode 100644 index 0000000..6b004c3 --- /dev/null +++ b/public/organe/PO53305.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53305", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53306.json b/public/organe/PO53306.json new file mode 100644 index 0000000..f77478b --- /dev/null +++ b/public/organe/PO53306.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53306", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53307.json b/public/organe/PO53307.json new file mode 100644 index 0000000..036c387 --- /dev/null +++ b/public/organe/PO53307.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53307", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "5", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53308.json b/public/organe/PO53308.json new file mode 100644 index 0000000..270bd2f --- /dev/null +++ b/public/organe/PO53308.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53308", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53309.json b/public/organe/PO53309.json new file mode 100644 index 0000000..f9e5cac --- /dev/null +++ b/public/organe/PO53309.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53309", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53310.json b/public/organe/PO53310.json new file mode 100644 index 0000000..8daeab2 --- /dev/null +++ b/public/organe/PO53310.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53310", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53311.json b/public/organe/PO53311.json new file mode 100644 index 0000000..8ed0df6 --- /dev/null +++ b/public/organe/PO53311.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53311", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53312.json b/public/organe/PO53312.json new file mode 100644 index 0000000..fcf16da --- /dev/null +++ b/public/organe/PO53312.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53312", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "5", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53313.json b/public/organe/PO53313.json new file mode 100644 index 0000000..26fd2da --- /dev/null +++ b/public/organe/PO53313.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53313", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53314.json b/public/organe/PO53314.json new file mode 100644 index 0000000..d849fd6 --- /dev/null +++ b/public/organe/PO53314.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53314", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53315.json b/public/organe/PO53315.json new file mode 100644 index 0000000..f2b7b2e --- /dev/null +++ b/public/organe/PO53315.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53315", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53316.json b/public/organe/PO53316.json new file mode 100644 index 0000000..0005c54 --- /dev/null +++ b/public/organe/PO53316.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53316", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO53317.json b/public/organe/PO53317.json new file mode 100644 index 0000000..e8cb71e --- /dev/null +++ b/public/organe/PO53317.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53317", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription n\u00b0 0 de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 0\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": "0", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO53319.json b/public/organe/PO53319.json new file mode 100644 index 0000000..b3c0f86 --- /dev/null +++ b/public/organe/PO53319.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53319", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO53320.json b/public/organe/PO53320.json new file mode 100644 index 0000000..cc3f956 --- /dev/null +++ b/public/organe/PO53320.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53320", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO53321.json b/public/organe/PO53321.json new file mode 100644 index 0000000..128f4c5 --- /dev/null +++ b/public/organe/PO53321.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53321", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO53322.json b/public/organe/PO53322.json new file mode 100644 index 0000000..34d49c4 --- /dev/null +++ b/public/organe/PO53322.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53322", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription n\u00b0 0 de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 0\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": "0", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "T", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO53324.json b/public/organe/PO53324.json new file mode 100644 index 0000000..b99bb0c --- /dev/null +++ b/public/organe/PO53324.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53324", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "T", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO53325.json b/public/organe/PO53325.json new file mode 100644 index 0000000..4a020a7 --- /dev/null +++ b/public/organe/PO53325.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53325", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "T", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO53326.json b/public/organe/PO53326.json new file mode 100644 index 0000000..a4b45af --- /dev/null +++ b/public/organe/PO53326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53326", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "T", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO53327.json b/public/organe/PO53327.json new file mode 100644 index 0000000..edec52b --- /dev/null +++ b/public/organe/PO53327.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53327", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO53328.json b/public/organe/PO53328.json new file mode 100644 index 0000000..a2cbf62 --- /dev/null +++ b/public/organe/PO53328.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53328", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO53329.json b/public/organe/PO53329.json new file mode 100644 index 0000000..b1e2637 --- /dev/null +++ b/public/organe/PO53329.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53329", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO53330.json b/public/organe/PO53330.json new file mode 100644 index 0000000..9430423 --- /dev/null +++ b/public/organe/PO53330.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53330", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO53331.json b/public/organe/PO53331.json new file mode 100644 index 0000000..468f14e --- /dev/null +++ b/public/organe/PO53331.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53331", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO53332.json b/public/organe/PO53332.json new file mode 100644 index 0000000..ef75bcc --- /dev/null +++ b/public/organe/PO53332.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53332", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO53333.json b/public/organe/PO53333.json new file mode 100644 index 0000000..8f522d8 --- /dev/null +++ b/public/organe/PO53333.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53333", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO53334.json b/public/organe/PO53334.json new file mode 100644 index 0000000..bff92e0 --- /dev/null +++ b/public/organe/PO53334.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53334", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO53335.json b/public/organe/PO53335.json new file mode 100644 index 0000000..8b1300a --- /dev/null +++ b/public/organe/PO53335.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53335", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO53336.json b/public/organe/PO53336.json new file mode 100644 index 0000000..f0aafca --- /dev/null +++ b/public/organe/PO53336.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53336", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53337.json b/public/organe/PO53337.json new file mode 100644 index 0000000..c3905f8 --- /dev/null +++ b/public/organe/PO53337.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53337", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53338.json b/public/organe/PO53338.json new file mode 100644 index 0000000..703d156 --- /dev/null +++ b/public/organe/PO53338.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53338", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53339.json b/public/organe/PO53339.json new file mode 100644 index 0000000..e8f65fb --- /dev/null +++ b/public/organe/PO53339.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53339", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53340.json b/public/organe/PO53340.json new file mode 100644 index 0000000..0a63231 --- /dev/null +++ b/public/organe/PO53340.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53340", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53341.json b/public/organe/PO53341.json new file mode 100644 index 0000000..73b69c1 --- /dev/null +++ b/public/organe/PO53341.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53341", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53342.json b/public/organe/PO53342.json new file mode 100644 index 0000000..eefbe69 --- /dev/null +++ b/public/organe/PO53342.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53342", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53343.json b/public/organe/PO53343.json new file mode 100644 index 0000000..6c71a87 --- /dev/null +++ b/public/organe/PO53343.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53343", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53344.json b/public/organe/PO53344.json new file mode 100644 index 0000000..38e8cb9 --- /dev/null +++ b/public/organe/PO53344.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53344", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53345.json b/public/organe/PO53345.json new file mode 100644 index 0000000..a82eb58 --- /dev/null +++ b/public/organe/PO53345.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53345", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO53346.json b/public/organe/PO53346.json new file mode 100644 index 0000000..5344cff --- /dev/null +++ b/public/organe/PO53346.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53346", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription n\u00b0 0 de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 0\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "0", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53347.json b/public/organe/PO53347.json new file mode 100644 index 0000000..76eb092 --- /dev/null +++ b/public/organe/PO53347.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53347", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53348.json b/public/organe/PO53348.json new file mode 100644 index 0000000..b827575 --- /dev/null +++ b/public/organe/PO53348.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53348", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53349.json b/public/organe/PO53349.json new file mode 100644 index 0000000..a5fbd31 --- /dev/null +++ b/public/organe/PO53349.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53349", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1981-07-02", "dateAgrement": null, "dateFin": "1986-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "7", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53351.json b/public/organe/PO53351.json new file mode 100644 index 0000000..663c1af --- /dev/null +++ b/public/organe/PO53351.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53351", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1986-04-02", "dateAgrement": null, "dateFin": "1988-05-14"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "8", "numero": null, "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53352.json b/public/organe/PO53352.json new file mode 100644 index 0000000..9195249 --- /dev/null +++ b/public/organe/PO53352.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53352", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53353.json b/public/organe/PO53353.json new file mode 100644 index 0000000..04fdf6f --- /dev/null +++ b/public/organe/PO53353.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53353", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1988-06-05", "dateAgrement": null, "dateFin": "1993-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "9", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53354.json b/public/organe/PO53354.json new file mode 100644 index 0000000..198ca3b --- /dev/null +++ b/public/organe/PO53354.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53354", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53355.json b/public/organe/PO53355.json new file mode 100644 index 0000000..cd125d8 --- /dev/null +++ b/public/organe/PO53355.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53355", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1993-04-02", "dateAgrement": null, "dateFin": "1997-04-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "10", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53356.json b/public/organe/PO53356.json new file mode 100644 index 0000000..17c9ebd --- /dev/null +++ b/public/organe/PO53356.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53356", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53357.json b/public/organe/PO53357.json new file mode 100644 index 0000000..1a7983e --- /dev/null +++ b/public/organe/PO53357.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53357", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1997-06-12", "dateAgrement": null, "dateFin": "2002-06-18"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "11", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO53358.json b/public/organe/PO53358.json new file mode 100644 index 0000000..0f070fc --- /dev/null +++ b/public/organe/PO53358.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO53358", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription", "libelleEdition": "de la circonscription", "libelleAbrege": "Num\u00e9ro inconnu", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1943-11-03", "dateAgrement": null, "dateFin": "1945-11-05"}, "organeParent": null, "chambre": null, "regime": "Assembl\u00e9e consultative provisoire", "legislature": null, "numero": null, "lieu": {"region": {"type": null, "libelle": null}, "departement": {"codeNatureDep": null, "code": null, "libelle": null}}}} \ No newline at end of file diff --git a/public/organe/PO540562.json b/public/organe/PO540562.json new file mode 100644 index 0000000..27f14ca --- /dev/null +++ b/public/organe/PO540562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO540562", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de Campus France", "libelleEdition": "du conseil d'administration de Campus France", "libelleAbrege": "Campus France", "libelleAbrev": "292", "viMoDe": {"dateDebut": "2011-12-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 6 de la loi n\u00b0 2010-873 du 27 juillet 2010", "siteInternet": "https://www.campusfrance.org/fr/organisation-conseils-organigramme", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO585469.json b/public/organe/PO585469.json new file mode 100644 index 0000000..a5db7a0 --- /dev/null +++ b/public/organe/PO585469.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO585469", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1951-07-05", "dateAgrement": null, "dateFin": "1955-12-01"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO585470.json b/public/organe/PO585470.json new file mode 100644 index 0000000..7274f1e --- /dev/null +++ b/public/organe/PO585470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO585470", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO585471.json b/public/organe/PO585471.json new file mode 100644 index 0000000..dbc77f2 --- /dev/null +++ b/public/organe/PO585471.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO585471", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO585472.json b/public/organe/PO585472.json new file mode 100644 index 0000000..ecc71d1 --- /dev/null +++ b/public/organe/PO585472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO585472", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO585473.json b/public/organe/PO585473.json new file mode 100644 index 0000000..c9e79c4 --- /dev/null +++ b/public/organe/PO585473.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO585473", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO585474.json b/public/organe/PO585474.json new file mode 100644 index 0000000..93b3897 --- /dev/null +++ b/public/organe/PO585474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO585474", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO585475.json b/public/organe/PO585475.json new file mode 100644 index 0000000..3e46b00 --- /dev/null +++ b/public/organe/PO585475.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO585475", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO585476.json b/public/organe/PO585476.json new file mode 100644 index 0000000..56b9dd9 --- /dev/null +++ b/public/organe/PO585476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO585476", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO58974.json b/public/organe/PO58974.json new file mode 100644 index 0000000..80baad3 --- /dev/null +++ b/public/organe/PO58974.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO58974", "codeType": "API", "libelle": "D\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire de l'OTAN", "libelleEdition": "de la d\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire de l'OTAN", "libelleAbrege": "Assembl\u00e9e parlementaire de l'OTAN", "libelleAbrev": "OTAN", "viMoDe": {"dateDebut": "1988-06-13", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Vincent Tocanne", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO58976.json b/public/organe/PO58976.json new file mode 100644 index 0000000..f2150b8 --- /dev/null +++ b/public/organe/PO58976.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO58976", "codeType": "API", "libelle": "D\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire de l'Organisation pour la S\u00e9curit\u00e9 et la Coop\u00e9ration en Europe (O.S.C.E.)", "libelleEdition": "de la d\u00e9l\u00e9gation fran\u00e7aise \u00e0 l'Assembl\u00e9e parlementaire de l'Organisation pour la S\u00e9curit\u00e9 et la Coop\u00e9ration en Europe", "libelleAbrege": "OSCE", "libelleAbrev": "OSC", "viMoDe": {"dateDebut": "1994-12-05", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "Mme Anne-C\u00e9cile Blauwblomme-Delcroix", "secretaire02": "M. Fr\u00e9d\u00e9ric Taillet"}}} \ No newline at end of file diff --git a/public/organe/PO59046.json b/public/organe/PO59046.json new file mode 100644 index 0000000..5c7db6e --- /dev/null +++ b/public/organe/PO59046.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO59046", "codeType": "COMPER", "libelle": "Commission de la d\u00e9fense nationale et des forces arm\u00e9es", "libelleEdition": "de la commission de la d\u00e9fense nationale et des forces arm\u00e9es", "libelleAbrege": "D\u00e9fense", "libelleAbrev": "CION_DEF", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Didier Le Bot", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO59047.json b/public/organe/PO59047.json new file mode 100644 index 0000000..338bacc --- /dev/null +++ b/public/organe/PO59047.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO59047", "codeType": "COMPER", "libelle": "Commission des affaires \u00e9trang\u00e8res", "libelleEdition": "de la commission des affaires \u00e9trang\u00e8res", "libelleAbrege": "Affaires \u00e9trang\u00e8res", "libelleAbrev": "CION_AFETR", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Guillaume Bazin", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO59048.json b/public/organe/PO59048.json new file mode 100644 index 0000000..d1d03c2 --- /dev/null +++ b/public/organe/PO59048.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO59048", "codeType": "COMPER", "libelle": "Commission des finances, de l'\u00e9conomie g\u00e9n\u00e9rale et du contr\u00f4le budg\u00e9taire", "libelleEdition": "de la commission des finances", "libelleAbrege": "Finances", "libelleAbrev": "CION_FIN", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Adrien Gaffier", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO59051.json b/public/organe/PO59051.json new file mode 100644 index 0000000..c76ff17 --- /dev/null +++ b/public/organe/PO59051.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO59051", "codeType": "COMPER", "libelle": "Commission des lois constitutionnelles, de la l\u00e9gislation et de l'administration g\u00e9n\u00e9rale de la R\u00e9publique", "libelleEdition": "de la commission des lois", "libelleAbrege": "Lois", "libelleAbrev": "CION_LOIS", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Damien Chamussy", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO60156.json b/public/organe/PO60156.json new file mode 100644 index 0000000..b9208a2 --- /dev/null +++ b/public/organe/PO60156.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60156", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Office national des anciens combattants et victimes de guerre", "libelleEdition": "du conseil d'administration de l'Office national des anciens combattants et victimes de guerre", "libelleAbrege": "Anciens combattants", "libelleAbrev": "8", "viMoDe": {"dateDebut": "1979-05-10", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 612-1 du code des pensions militaires d\u2019invalidit\u00e9 et des victimes de la guerre", "siteInternet": "http://www.onac-vg.fr/fr/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60159.json b/public/organe/PO60159.json new file mode 100644 index 0000000..63ffa06 --- /dev/null +++ b/public/organe/PO60159.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60159", "codeType": "ORGEXTPARL", "libelle": "Conseil national du bruit", "libelleEdition": "du Conseil national du bruit", "libelleAbrege": "Bruit", "libelleAbrev": "12", "viMoDe": {"dateDebut": "1982-06-07", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 571-1-1 du\u00a0code\u00a0de\u00a0l\u2019environnement", "siteInternet": "https://www.ecologique-solidaire.gouv.fr/conseil-national-du-bruit", "nombreReunionsAnnuelles": "22"}} \ No newline at end of file diff --git a/public/organe/PO60160.json b/public/organe/PO60160.json new file mode 100644 index 0000000..ad07764 --- /dev/null +++ b/public/organe/PO60160.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60160", "codeType": "ORGEXTPARL", "libelle": "Commission de surveillance de la Caisse des d\u00e9p\u00f4ts et consignations", "libelleEdition": "de la commission de surveillance de la caisse des d\u00e9p\u00f4ts et consignations", "libelleAbrege": "Caisse des d\u00e9p\u00f4ts et consignations", "libelleAbrev": "13", "viMoDe": {"dateDebut": "1948-01-17", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 518-4 du code mon\u00e9taire et financier", "siteInternet": "https://www.caissedesdepots.fr/notre-gouvernance", "nombreReunionsAnnuelles": "20"}} \ No newline at end of file diff --git a/public/organe/PO60168.json b/public/organe/PO60168.json new file mode 100644 index 0000000..df7aa5e --- /dev/null +++ b/public/organe/PO60168.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60168", "codeType": "ORGEXTPARL", "libelle": "Commission d'acc\u00e8s aux documents administratifs", "libelleEdition": "de la Commission d'acc\u00e8s aux documents administratifs", "libelleAbrege": "Documents administratifs", "libelleAbrev": "22", "viMoDe": {"dateDebut": "1978-12-06", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 341 du code des relations entre le public et l'administration", "siteInternet": "http://www.cada.fr/composition,6076.html", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60170.json b/public/organe/PO60170.json new file mode 100644 index 0000000..87af657 --- /dev/null +++ b/public/organe/PO60170.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60170", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur de l'\u00e9nergie", "libelleEdition": "du Conseil sup\u00e9rieur de l'\u00e9nergie", "libelleAbrege": "\u00c9nergie (Conseil sup\u00e9rieur)", "libelleAbrev": "24", "viMoDe": {"dateDebut": "1946-04-08", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "Assembl\u00e9es nationales constituantes", "legislature": null, "regimeJuridique": "Articles L. 142-41 du code de l'\u00e9nergie", "siteInternet": null, "nombreReunionsAnnuelles": "27"}} \ No newline at end of file diff --git a/public/organe/PO60174.json b/public/organe/PO60174.json new file mode 100644 index 0000000..142447a --- /dev/null +++ b/public/organe/PO60174.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60174", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration du Conservatoire de l'espace littoral et des rivages lacustres", "libelleEdition": "du conseil d'administration du Conservatoire de l'espace littoral et des rivages lacustres", "libelleAbrege": "Littoral et rivages lacustres", "libelleAbrev": "29", "viMoDe": {"dateDebut": "1975-07-10", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 322-11 du code de l\u2019environnement", "siteInternet": "http://www.conservatoire-du-littoral.fr/57-gouvernance-de-l-etablissement.htm", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60175.json b/public/organe/PO60175.json new file mode 100644 index 0000000..8cb7e35 --- /dev/null +++ b/public/organe/PO60175.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60175", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 consultatif national d'\u00e9thique pour les sciences de la vie et de la sant\u00e9", "libelleEdition": "du Comit\u00e9 consultatif national d'\u00e9thique pour les sciences de la vie et de la sant\u00e9", "libelleAbrege": "\u00c9thique pour sciences de la vie et de la sant\u00e9", "libelleAbrev": "30", "viMoDe": {"dateDebut": "1983-02-23", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 1412-2 du code de la sant\u00e9 publique", "siteInternet": "http://www.ccne-ethique.fr/fr/pages/les-membres", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60179.json b/public/organe/PO60179.json new file mode 100644 index 0000000..e117c31 --- /dev/null +++ b/public/organe/PO60179.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60179", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 des finances locales", "libelleEdition": "du Comit\u00e9 des finances locales", "libelleAbrege": "Finances locales", "libelleAbrev": "34", "viMoDe": {"dateDebut": "1979-01-03", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 1211-2 du code g\u00e9n\u00e9ral des collectivit\u00e9s territoriales", "siteInternet": "https://www.collectivites-locales.gouv.fr/liste-des-membres-1", "nombreReunionsAnnuelles": "7"}} \ No newline at end of file diff --git a/public/organe/PO60181.json b/public/organe/PO60181.json new file mode 100644 index 0000000..53cfc96 --- /dev/null +++ b/public/organe/PO60181.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60181", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur de la for\u00eat et du bois", "libelleEdition": "du Conseil sup\u00e9rieur de la for\u00eat et du bois", "libelleAbrege": "For\u00eat et bois", "libelleAbrev": "37", "viMoDe": {"dateDebut": "1964-08-03", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Articles L. 113-1\u00a0et D.\u00a0113-1\u00a0du\u00a0code\u00a0forestier", "siteInternet": "http://agriculture.gouv.fr/conseil-superieur-de-la-foret-et-du-bois-grand-dynamisme-de-la-filiere", "nombreReunionsAnnuelles": "1"}} \ No newline at end of file diff --git a/public/organe/PO60185.json b/public/organe/PO60185.json new file mode 100644 index 0000000..88d512e --- /dev/null +++ b/public/organe/PO60185.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60185", "codeType": "ORGEXTPARL", "libelle": "Commission nationale de l'informatique et des libert\u00e9s (CNIL)", "libelleEdition": "de la Commission nationale de l'informatique et des libert\u00e9s (CNIL)", "libelleAbrege": "Informatique et Libert\u00e9s", "libelleAbrev": "42", "viMoDe": {"dateDebut": "1978-01-06", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 13 de la loi n\u00b0 78-17 du 6 janvier 1978", "siteInternet": "https://www.cnil.fr/fr/la-cnil/membres", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60192.json b/public/organe/PO60192.json new file mode 100644 index 0000000..9a1a55c --- /dev/null +++ b/public/organe/PO60192.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60192", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration du Centre national d'art et de culture Georges Pompidou", "libelleEdition": "du conseil d'administration du Centre national d'art et de culture Georges Pompidou", "libelleAbrege": "Pompidou", "libelleAbrev": "49", "viMoDe": {"dateDebut": "1976-01-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Articles 4 de la loi n\u00b0 75-1 du 3 janvier 1975 et 4 du d\u00e9cret n\u00b0 92-1351 du 24 d\u00e9cembre 1992", "siteInternet": "https://www.centrepompidou.fr/fr/Le-Centre-Pompidou/L-organisation", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60193.json b/public/organe/PO60193.json new file mode 100644 index 0000000..24fe997 --- /dev/null +++ b/public/organe/PO60193.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60193", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur des prestations sociales agricoles", "libelleEdition": "du Conseil sup\u00e9rieur des prestations sociales agricoles", "libelleAbrege": "Prestations sociales agricoles", "libelleAbrev": "50", "viMoDe": {"dateDebut": "1969-06-21", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Articles\u00a0L. 721-3 du\u00a0code\u00a0rural\u00a0et\u00a0de\u00a0la\u00a0p\u00eache\u00a0maritime", "siteInternet": "http://agriculture.gouv.fr/le-conseil-superieur-des-prestations-sociales-agricoles", "nombreReunionsAnnuelles": "5"}} \ No newline at end of file diff --git a/public/organe/PO60210.json b/public/organe/PO60210.json new file mode 100644 index 0000000..0e45c23 --- /dev/null +++ b/public/organe/PO60210.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60210", "codeType": "ORGEXTPARL", "libelle": "Commission des comptes de la s\u00e9curit\u00e9 sociale", "libelleEdition": "de la Commission des comptes de la s\u00e9curit\u00e9 sociale", "libelleAbrege": "S\u00e9curit\u00e9 sociale, comptes", "libelleAbrev": "67", "viMoDe": {"dateDebut": "1979-03-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 114-1 du code de la s\u00e9curit\u00e9 sociale", "siteInternet": "http://www.securite-sociale.fr/Membres-de-la-CCSS,259", "nombreReunionsAnnuelles": "2"}} \ No newline at end of file diff --git a/public/organe/PO60214.json b/public/organe/PO60214.json new file mode 100644 index 0000000..3a1eeeb --- /dev/null +++ b/public/organe/PO60214.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60214", "codeType": "ORGEXTPARL", "libelle": "Commission sup\u00e9rieure des sites, perspectives et paysages", "libelleEdition": "de la Commission sup\u00e9rieure des sites, perspectives et paysages", "libelleAbrege": "Sites", "libelleAbrev": "72", "viMoDe": {"dateDebut": "1947-08-26", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 341-17 du code de l\u2019environnement", "siteInternet": null, "nombreReunionsAnnuelles": "5"}} \ No newline at end of file diff --git a/public/organe/PO60215.json b/public/organe/PO60215.json new file mode 100644 index 0000000..c452aef --- /dev/null +++ b/public/organe/PO60215.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60215", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'information statistique", "libelleEdition": "du Conseil national de l'information statistique", "libelleAbrege": "Statistique", "libelleAbrev": "73", "viMoDe": {"dateDebut": "1984-07-17", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 1 bis de la loi n\u00b0 51-711 du 7 juin 1951", "siteInternet": "https://www.cnis.fr/instances/composition-du-conseil/", "nombreReunionsAnnuelles": "21"}} \ No newline at end of file diff --git a/public/organe/PO60218.json b/public/organe/PO60218.json new file mode 100644 index 0000000..86377b8 --- /dev/null +++ b/public/organe/PO60218.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60218", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'agence nationale pour l'am\u00e9lioration des conditions de travail", "libelleEdition": "du conseil d'administration de l'Agence nationale pour l'am\u00e9lioration des conditions de travail", "libelleAbrege": "Travail, conditions de", "libelleAbrev": "76", "viMoDe": {"dateDebut": "1973-12-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 4642-2 du code du travail", "siteInternet": "https://www.anact.fr/le-conseil-dadministration-de-lagence-nationale-pour-lamelioration-des-conditions-de-travail-anact", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60222.json b/public/organe/PO60222.json new file mode 100644 index 0000000..87eec5c --- /dev/null +++ b/public/organe/PO60222.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60222", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'habitat", "libelleEdition": "du Conseil national de l'habitat", "libelleAbrege": "Habitat", "libelleAbrev": "81", "viMoDe": {"dateDebut": "1983-06-08", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 361-1 du code de la construction et de l\u2019habitation", "siteInternet": null, "nombreReunionsAnnuelles": "5"}} \ No newline at end of file diff --git a/public/organe/PO60227.json b/public/organe/PO60227.json new file mode 100644 index 0000000..2bb94ff --- /dev/null +++ b/public/organe/PO60227.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60227", "codeType": "ORGEXTPARL", "libelle": "Commission nationale consultative des droits de l'homme", "libelleEdition": "de la Commission nationale consultative des droits de l'homme", "libelleAbrege": "Droits de l'homme", "libelleAbrev": "86", "viMoDe": {"dateDebut": "1984-01-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 1 de la loi n\u00b0 2007-292 du 5 mars 2007", "siteInternet": "http://www.cncdh.fr/fr/membres", "nombreReunionsAnnuelles": "50"}} \ No newline at end of file diff --git a/public/organe/PO60235.json b/public/organe/PO60235.json new file mode 100644 index 0000000..2e75c9a --- /dev/null +++ b/public/organe/PO60235.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60235", "codeType": "ORGEXTPARL", "libelle": "Conseil national de la montagne", "libelleEdition": "du Conseil national de la montagne", "libelleAbrege": "Montagne", "libelleAbrev": "95", "viMoDe": {"dateDebut": "1985-01-19", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "\"Article 6 de la loi n\u00b0 85-30 du 9 janvier 1985\"", "siteInternet": "http://www.cget.gouv.fr/montagne/conseil-national-de-montagne", "nombreReunionsAnnuelles": "3"}} \ No newline at end of file diff --git a/public/organe/PO60239.json b/public/organe/PO60239.json new file mode 100644 index 0000000..e83cde9 --- /dev/null +++ b/public/organe/PO60239.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60239", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de la soci\u00e9t\u00e9 Radio-France", "libelleEdition": "du conseil d'administration de la soci\u00e9t\u00e9 nationale de programme Radio-France", "libelleAbrege": "Radio France", "libelleAbrev": "99", "viMoDe": {"dateDebut": "1986-09-10", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 47-2 de la loi n\u00b0 86-1067 du 30 septembre 1986", "siteInternet": "http://www.radiofrance.fr/l-entreprise/conseil-d-administration", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO60244.json b/public/organe/PO60244.json new file mode 100644 index 0000000..f46fe15 --- /dev/null +++ b/public/organe/PO60244.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60244", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Institut national de l'audiovisuel (INA)", "libelleEdition": "du conseil d'administration de l'Institut national de l'audiovisuel (INA)", "libelleAbrege": "Institut national de l'audiovisuel", "libelleAbrev": "104", "viMoDe": {"dateDebut": "1986-09-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 50 de la loi n\u00b0 86-1067 du 30 septembre 1986", "siteInternet": "https://institut.ina.fr/institut/organisation/le-conseil-d-administration", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO602463.json b/public/organe/PO602463.json new file mode 100644 index 0000000..ce6347f --- /dev/null +++ b/public/organe/PO602463.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO602463", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO602464.json b/public/organe/PO602464.json new file mode 100644 index 0000000..dedd22b --- /dev/null +++ b/public/organe/PO602464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO602464", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO60248.json b/public/organe/PO60248.json new file mode 100644 index 0000000..a552ec0 --- /dev/null +++ b/public/organe/PO60248.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60248", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'enseignement sup\u00e9rieur et de la recherche", "libelleEdition": "du Conseil national de l'enseignement sup\u00e9rieur et de la recherche", "libelleAbrege": "Enseignement sup\u00e9rieur", "libelleAbrev": "108", "viMoDe": {"dateDebut": "1989-01-02", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 232-1 du code de l\u2019\u00e9ducation", "siteInternet": "http://www.enseignementsup-recherche.gouv.fr/cid53497/le-conseil-national-de-l-enseignement-superieur-et-de-la-recherche-cneser.html", "nombreReunionsAnnuelles": "20"}} \ No newline at end of file diff --git a/public/organe/PO60249.json b/public/organe/PO60249.json new file mode 100644 index 0000000..563fac5 --- /dev/null +++ b/public/organe/PO60249.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60249", "codeType": "ORGEXTPARL", "libelle": "Commission sup\u00e9rieure de la codification", "libelleEdition": "de la Commission sup\u00e9rieure de codification", "libelleAbrege": "Codification", "libelleAbrev": "109", "viMoDe": {"dateDebut": "1989-09-12", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "L. 351-1 du code des relations entre le public et l'administration", "siteInternet": "https://www.gouvernement.fr/composition-commission-superieure-codification", "nombreReunionsAnnuelles": "4"}} \ No newline at end of file diff --git a/public/organe/PO60252.json b/public/organe/PO60252.json new file mode 100644 index 0000000..389ce57 --- /dev/null +++ b/public/organe/PO60252.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60252", "codeType": "ORGEXTPARL", "libelle": "Commission sup\u00e9rieure du num\u00e9rique et des postes", "libelleEdition": "de la Commission sup\u00e9rieure du num\u00e9rique et des postes", "libelleAbrege": "Postes et communications", "libelleAbrev": "112", "viMoDe": {"dateDebut": "1990-07-02", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 125 du code des postes et des communications \u00e9lectroniques", "siteInternet": "https://csnp.fr/", "nombreReunionsAnnuelles": "10"}} \ No newline at end of file diff --git a/public/organe/PO60255.json b/public/organe/PO60255.json new file mode 100644 index 0000000..5f330f9 --- /dev/null +++ b/public/organe/PO60255.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60255", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Agence pour l'enseignement fran\u00e7ais \u00e0 l'\u00e9tranger", "libelleEdition": "du conseil d'administration de l'Agence pour l'enseignement fran\u00e7ais \u00e0 l'\u00e9tranger", "libelleAbrege": "Enseignement fran\u00e7ais \u00e0 l'\u00e9tranger", "libelleAbrev": "115", "viMoDe": {"dateDebut": "1990-07-06", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article\u00a0L.\u00a0452-6 du code de l'\u00e9ducation", "siteInternet": "http://www.aefe.fr/aefe/organigramme/organigramme-de-laefe-conseil-dadministration-ca", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60260.json b/public/organe/PO60260.json new file mode 100644 index 0000000..dd90b53 --- /dev/null +++ b/public/organe/PO60260.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60260", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Agence de l'environnement et de la ma\u00eetrise de l'\u00e9nergie", "libelleEdition": "du conseil d'administration de l'Agence de l'environnement et de la ma\u00eetrise de l'\u00e9nergie", "libelleAbrege": "Environnement et ma\u00eetrise de l'\u00e9nergie", "libelleAbrev": "120", "viMoDe": {"dateDebut": "1990-12-19", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 131-4 du code de l\u2019environnement", "siteInternet": "http://www.ademe.fr/connaitre/presentation-lademe/instances-statut-lademe", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60263.json b/public/organe/PO60263.json new file mode 100644 index 0000000..184d555 --- /dev/null +++ b/public/organe/PO60263.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60263", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 national de l'organisation sanitaire et sociale", "libelleEdition": "du Comit\u00e9 national de l'organisation sanitaire et sociale", "libelleAbrege": "Sanitaire et sociale (Organisation )", "libelleAbrev": "124", "viMoDe": {"dateDebut": "1991-07-31", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 6121-8 du code de la sant\u00e9 publique", "siteInternet": null, "nombreReunionsAnnuelles": "8"}} \ No newline at end of file diff --git a/public/organe/PO60265.json b/public/organe/PO60265.json new file mode 100644 index 0000000..2176341 --- /dev/null +++ b/public/organe/PO60265.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60265", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Agence fran\u00e7aise de d\u00e9veloppement", "libelleEdition": "du conseil d'administration de l'Agence fran\u00e7aise de d\u00e9veloppement", "libelleAbrege": "D\u00e9veloppement", "libelleAbrev": "126", "viMoDe": {"dateDebut": "1992-10-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 515-13 du code mon\u00e9taire et financier", "siteInternet": "https://www.afd.fr/fr/gouvernance?prevId=63", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60266.json b/public/organe/PO60266.json new file mode 100644 index 0000000..a9deec0 --- /dev/null +++ b/public/organe/PO60266.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60266", "codeType": "ORGEXTPARL", "libelle": "Conseil national des politiques de lutte contre la pauvret\u00e9 et l'exclusion sociale", "libelleEdition": "du Conseil national des politiques de lutte contre la pauvret\u00e9 et l'exclusion sociale", "libelleAbrege": "Pauvret\u00e9 et exclusion sociale", "libelleAbrev": "127", "viMoDe": {"dateDebut": "1992-07-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 143-1 du code de l\u2019action sociale et des familles", "siteInternet": "https://www.cnle.gouv.fr/liste-des-membres-du-cnle.html", "nombreReunionsAnnuelles": "9"}} \ No newline at end of file diff --git a/public/organe/PO60267.json b/public/organe/PO60267.json new file mode 100644 index 0000000..d1b7586 --- /dev/null +++ b/public/organe/PO60267.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60267", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de surveillance du Fonds de solidarit\u00e9 vieillesse", "libelleEdition": "du comit\u00e9 de surveillance du Fonds de solidarit\u00e9 vieillesse", "libelleAbrege": "Fonds de solidarit\u00e9 vieillesse", "libelleAbrev": "128", "viMoDe": {"dateDebut": "1994-03-16", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 135-1 du code de la s\u00e9curit\u00e9 sociale", "siteInternet": "http://www.fsv.fr/fsv/gouvernance", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60286.json b/public/organe/PO60286.json new file mode 100644 index 0000000..605e373 --- /dev/null +++ b/public/organe/PO60286.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60286", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de surveillance de la Caisse d'amortissement de la dette sociale", "libelleEdition": "du comit\u00e9 de surveillance de la Caisse d'amortissement de la dette sociale (CADES)", "libelleAbrege": "Amortissement dette sociale", "libelleAbrev": "147", "viMoDe": {"dateDebut": "1996-04-26", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 3 de l'ordonnance n\u00b0 96-50 du 24 janvier 1996", "siteInternet": "http://www.cades.fr/index.php/fr/la-cades/gouvernance", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60291.json b/public/organe/PO60291.json new file mode 100644 index 0000000..496cb03 --- /dev/null +++ b/public/organe/PO60291.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60291", "codeType": "ORGEXTPARL", "libelle": "Commission nationale du d\u00e9bat public", "libelleEdition": "de la Commission nationale du d\u00e9bat public", "libelleAbrege": "D\u00e9bat public", "libelleAbrev": "152", "viMoDe": {"dateDebut": "1996-05-11", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 121-3 du code de l'environnement", "siteInternet": "https://www.debatpublic.fr/sa-composition", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60296.json b/public/organe/PO60296.json new file mode 100644 index 0000000..1015f1b --- /dev/null +++ b/public/organe/PO60296.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60296", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Institut des hautes \u00e9tudes de d\u00e9fense nationale", "libelleEdition": "du conseil d'administration de l'Institut des hautes \u00e9tudes de d\u00e9fense nationale", "libelleAbrege": "D\u00e9fense nationale", "libelleAbrev": "157", "viMoDe": {"dateDebut": "1997-09-06", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 1132-1 du code de la d\u00e9fense", "siteInternet": "https://www.ihedn.fr/conseil-dadministration", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO60297.json b/public/organe/PO60297.json new file mode 100644 index 0000000..f16c2e2 --- /dev/null +++ b/public/organe/PO60297.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO60297", "codeType": "ORGEXTPARL", "libelle": "Commission consultative du secret de la d\u00e9fense nationale", "libelleEdition": "de la Commission consultative du secret de la d\u00e9fense nationale", "libelleAbrege": "D\u00e9fense, secret de", "libelleAbrev": "158", "viMoDe": {"dateDebut": "1998-07-08", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 2312-2 du code de la d\u00e9fense", "siteInternet": "https://www.defense.gouv.fr/sga/le-sga-en-action/droit-et-defense/secret-defense/secret-defense", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO644421.json b/public/organe/PO644421.json new file mode 100644 index 0000000..d775ba8 --- /dev/null +++ b/public/organe/PO644421.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644421", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO644422.json b/public/organe/PO644422.json new file mode 100644 index 0000000..d4c0330 --- /dev/null +++ b/public/organe/PO644422.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644422", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO644423.json b/public/organe/PO644423.json new file mode 100644 index 0000000..094cc90 --- /dev/null +++ b/public/organe/PO644423.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644423", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO644424.json b/public/organe/PO644424.json new file mode 100644 index 0000000..c35c464 --- /dev/null +++ b/public/organe/PO644424.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644424", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO644425.json b/public/organe/PO644425.json new file mode 100644 index 0000000..f213eba --- /dev/null +++ b/public/organe/PO644425.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644425", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO644426.json b/public/organe/PO644426.json new file mode 100644 index 0000000..a0e2550 --- /dev/null +++ b/public/organe/PO644426.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644426", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO644427.json b/public/organe/PO644427.json new file mode 100644 index 0000000..91624cc --- /dev/null +++ b/public/organe/PO644427.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644427", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO644428.json b/public/organe/PO644428.json new file mode 100644 index 0000000..cc26021 --- /dev/null +++ b/public/organe/PO644428.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644428", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO644429.json b/public/organe/PO644429.json new file mode 100644 index 0000000..c8d3aa1 --- /dev/null +++ b/public/organe/PO644429.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644429", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO644430.json b/public/organe/PO644430.json new file mode 100644 index 0000000..6178816 --- /dev/null +++ b/public/organe/PO644430.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644430", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO644431.json b/public/organe/PO644431.json new file mode 100644 index 0000000..2a55701 --- /dev/null +++ b/public/organe/PO644431.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644431", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO644432.json b/public/organe/PO644432.json new file mode 100644 index 0000000..dab2f7e --- /dev/null +++ b/public/organe/PO644432.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644432", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO644434.json b/public/organe/PO644434.json new file mode 100644 index 0000000..4d019c9 --- /dev/null +++ b/public/organe/PO644434.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644434", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO644435.json b/public/organe/PO644435.json new file mode 100644 index 0000000..a46125f --- /dev/null +++ b/public/organe/PO644435.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644435", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO644436.json b/public/organe/PO644436.json new file mode 100644 index 0000000..3c4b56c --- /dev/null +++ b/public/organe/PO644436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644436", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO644437.json b/public/organe/PO644437.json new file mode 100644 index 0000000..2eca5f3 --- /dev/null +++ b/public/organe/PO644437.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644437", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO644438.json b/public/organe/PO644438.json new file mode 100644 index 0000000..8e403e3 --- /dev/null +++ b/public/organe/PO644438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644438", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO644439.json b/public/organe/PO644439.json new file mode 100644 index 0000000..1a9688d --- /dev/null +++ b/public/organe/PO644439.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644439", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO644440.json b/public/organe/PO644440.json new file mode 100644 index 0000000..b157d54 --- /dev/null +++ b/public/organe/PO644440.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644440", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO644441.json b/public/organe/PO644441.json new file mode 100644 index 0000000..001f6b5 --- /dev/null +++ b/public/organe/PO644441.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644441", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO644442.json b/public/organe/PO644442.json new file mode 100644 index 0000000..e84101c --- /dev/null +++ b/public/organe/PO644442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644442", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO644443.json b/public/organe/PO644443.json new file mode 100644 index 0000000..75d2fec --- /dev/null +++ b/public/organe/PO644443.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644443", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO644444.json b/public/organe/PO644444.json new file mode 100644 index 0000000..5ca834d --- /dev/null +++ b/public/organe/PO644444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644444", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO644445.json b/public/organe/PO644445.json new file mode 100644 index 0000000..addd195 --- /dev/null +++ b/public/organe/PO644445.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644445", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO644446.json b/public/organe/PO644446.json new file mode 100644 index 0000000..577836f --- /dev/null +++ b/public/organe/PO644446.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644446", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO644447.json b/public/organe/PO644447.json new file mode 100644 index 0000000..18e4689 --- /dev/null +++ b/public/organe/PO644447.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644447", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO644448.json b/public/organe/PO644448.json new file mode 100644 index 0000000..e726930 --- /dev/null +++ b/public/organe/PO644448.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644448", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO644449.json b/public/organe/PO644449.json new file mode 100644 index 0000000..c59839c --- /dev/null +++ b/public/organe/PO644449.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644449", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO644450.json b/public/organe/PO644450.json new file mode 100644 index 0000000..9d619b5 --- /dev/null +++ b/public/organe/PO644450.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644450", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO644451.json b/public/organe/PO644451.json new file mode 100644 index 0000000..3ee31e3 --- /dev/null +++ b/public/organe/PO644451.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644451", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO644452.json b/public/organe/PO644452.json new file mode 100644 index 0000000..ae3f1ee --- /dev/null +++ b/public/organe/PO644452.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644452", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO644453.json b/public/organe/PO644453.json new file mode 100644 index 0000000..ccaeda9 --- /dev/null +++ b/public/organe/PO644453.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644453", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO644454.json b/public/organe/PO644454.json new file mode 100644 index 0000000..4dbecd0 --- /dev/null +++ b/public/organe/PO644454.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644454", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO644455.json b/public/organe/PO644455.json new file mode 100644 index 0000000..fa22761 --- /dev/null +++ b/public/organe/PO644455.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644455", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO644456.json b/public/organe/PO644456.json new file mode 100644 index 0000000..12622eb --- /dev/null +++ b/public/organe/PO644456.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644456", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO644457.json b/public/organe/PO644457.json new file mode 100644 index 0000000..c7a66ef --- /dev/null +++ b/public/organe/PO644457.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644457", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO644458.json b/public/organe/PO644458.json new file mode 100644 index 0000000..2d89467 --- /dev/null +++ b/public/organe/PO644458.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644458", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO644459.json b/public/organe/PO644459.json new file mode 100644 index 0000000..156d7b0 --- /dev/null +++ b/public/organe/PO644459.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644459", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO644460.json b/public/organe/PO644460.json new file mode 100644 index 0000000..2ebd86d --- /dev/null +++ b/public/organe/PO644460.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644460", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO644461.json b/public/organe/PO644461.json new file mode 100644 index 0000000..af6b4d0 --- /dev/null +++ b/public/organe/PO644461.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644461", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO644462.json b/public/organe/PO644462.json new file mode 100644 index 0000000..338da6c --- /dev/null +++ b/public/organe/PO644462.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644462", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO644463.json b/public/organe/PO644463.json new file mode 100644 index 0000000..d0ad6ca --- /dev/null +++ b/public/organe/PO644463.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644463", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO644464.json b/public/organe/PO644464.json new file mode 100644 index 0000000..0d2d46f --- /dev/null +++ b/public/organe/PO644464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644464", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644465.json b/public/organe/PO644465.json new file mode 100644 index 0000000..becdac3 --- /dev/null +++ b/public/organe/PO644465.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644465", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644466.json b/public/organe/PO644466.json new file mode 100644 index 0000000..e522a7b --- /dev/null +++ b/public/organe/PO644466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644466", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644467.json b/public/organe/PO644467.json new file mode 100644 index 0000000..2a94acc --- /dev/null +++ b/public/organe/PO644467.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644467", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644468.json b/public/organe/PO644468.json new file mode 100644 index 0000000..bd91d86 --- /dev/null +++ b/public/organe/PO644468.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644468", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644469.json b/public/organe/PO644469.json new file mode 100644 index 0000000..205df7f --- /dev/null +++ b/public/organe/PO644469.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644469", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644470.json b/public/organe/PO644470.json new file mode 100644 index 0000000..6e2018b --- /dev/null +++ b/public/organe/PO644470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644470", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644471.json b/public/organe/PO644471.json new file mode 100644 index 0000000..051c2cf --- /dev/null +++ b/public/organe/PO644471.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644471", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644472.json b/public/organe/PO644472.json new file mode 100644 index 0000000..4a3dff8 --- /dev/null +++ b/public/organe/PO644472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644472", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644473.json b/public/organe/PO644473.json new file mode 100644 index 0000000..362a469 --- /dev/null +++ b/public/organe/PO644473.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644473", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644474.json b/public/organe/PO644474.json new file mode 100644 index 0000000..ec25e32 --- /dev/null +++ b/public/organe/PO644474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644474", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644475.json b/public/organe/PO644475.json new file mode 100644 index 0000000..11cb6b2 --- /dev/null +++ b/public/organe/PO644475.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644475", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644476.json b/public/organe/PO644476.json new file mode 100644 index 0000000..c0b884e --- /dev/null +++ b/public/organe/PO644476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644476", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644477.json b/public/organe/PO644477.json new file mode 100644 index 0000000..7f8d60b --- /dev/null +++ b/public/organe/PO644477.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644477", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644478.json b/public/organe/PO644478.json new file mode 100644 index 0000000..b4f5467 --- /dev/null +++ b/public/organe/PO644478.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644478", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644479.json b/public/organe/PO644479.json new file mode 100644 index 0000000..1f010cc --- /dev/null +++ b/public/organe/PO644479.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644479", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644480.json b/public/organe/PO644480.json new file mode 100644 index 0000000..b25136d --- /dev/null +++ b/public/organe/PO644480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644480", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO644481.json b/public/organe/PO644481.json new file mode 100644 index 0000000..2a0c7c8 --- /dev/null +++ b/public/organe/PO644481.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644481", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO644482.json b/public/organe/PO644482.json new file mode 100644 index 0000000..7128d99 --- /dev/null +++ b/public/organe/PO644482.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644482", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO644483.json b/public/organe/PO644483.json new file mode 100644 index 0000000..bcfb174 --- /dev/null +++ b/public/organe/PO644483.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644483", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO644484.json b/public/organe/PO644484.json new file mode 100644 index 0000000..7c2de6d --- /dev/null +++ b/public/organe/PO644484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644484", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO644485.json b/public/organe/PO644485.json new file mode 100644 index 0000000..5f90caa --- /dev/null +++ b/public/organe/PO644485.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644485", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO644486.json b/public/organe/PO644486.json new file mode 100644 index 0000000..609150d --- /dev/null +++ b/public/organe/PO644486.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644486", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO644487.json b/public/organe/PO644487.json new file mode 100644 index 0000000..e0ab389 --- /dev/null +++ b/public/organe/PO644487.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644487", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO644488.json b/public/organe/PO644488.json new file mode 100644 index 0000000..80dff00 --- /dev/null +++ b/public/organe/PO644488.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644488", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO644489.json b/public/organe/PO644489.json new file mode 100644 index 0000000..a8eafcc --- /dev/null +++ b/public/organe/PO644489.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644489", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO644490.json b/public/organe/PO644490.json new file mode 100644 index 0000000..0df4c72 --- /dev/null +++ b/public/organe/PO644490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644490", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO644492.json b/public/organe/PO644492.json new file mode 100644 index 0000000..684ede9 --- /dev/null +++ b/public/organe/PO644492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644492", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644493.json b/public/organe/PO644493.json new file mode 100644 index 0000000..006aed2 --- /dev/null +++ b/public/organe/PO644493.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644493", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644494.json b/public/organe/PO644494.json new file mode 100644 index 0000000..5148063 --- /dev/null +++ b/public/organe/PO644494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644494", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644495.json b/public/organe/PO644495.json new file mode 100644 index 0000000..89f6208 --- /dev/null +++ b/public/organe/PO644495.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644495", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644496.json b/public/organe/PO644496.json new file mode 100644 index 0000000..1c6995b --- /dev/null +++ b/public/organe/PO644496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644496", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644497.json b/public/organe/PO644497.json new file mode 100644 index 0000000..475d5f0 --- /dev/null +++ b/public/organe/PO644497.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644497", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO644498.json b/public/organe/PO644498.json new file mode 100644 index 0000000..fa348f8 --- /dev/null +++ b/public/organe/PO644498.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644498", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO644499.json b/public/organe/PO644499.json new file mode 100644 index 0000000..6806f01 --- /dev/null +++ b/public/organe/PO644499.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644499", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO644500.json b/public/organe/PO644500.json new file mode 100644 index 0000000..88921b3 --- /dev/null +++ b/public/organe/PO644500.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644500", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO644501.json b/public/organe/PO644501.json new file mode 100644 index 0000000..eb14542 --- /dev/null +++ b/public/organe/PO644501.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644501", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO644503.json b/public/organe/PO644503.json new file mode 100644 index 0000000..1396418 --- /dev/null +++ b/public/organe/PO644503.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644503", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO644504.json b/public/organe/PO644504.json new file mode 100644 index 0000000..c0169dc --- /dev/null +++ b/public/organe/PO644504.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644504", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO644505.json b/public/organe/PO644505.json new file mode 100644 index 0000000..9127e52 --- /dev/null +++ b/public/organe/PO644505.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644505", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO644506.json b/public/organe/PO644506.json new file mode 100644 index 0000000..c8c3564 --- /dev/null +++ b/public/organe/PO644506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644506", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO644507.json b/public/organe/PO644507.json new file mode 100644 index 0000000..bb1b86a --- /dev/null +++ b/public/organe/PO644507.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644507", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO644508.json b/public/organe/PO644508.json new file mode 100644 index 0000000..2cb15cf --- /dev/null +++ b/public/organe/PO644508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644508", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO644509.json b/public/organe/PO644509.json new file mode 100644 index 0000000..b0ac81a --- /dev/null +++ b/public/organe/PO644509.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644509", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO644510.json b/public/organe/PO644510.json new file mode 100644 index 0000000..3b57a5c --- /dev/null +++ b/public/organe/PO644510.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644510", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO644511.json b/public/organe/PO644511.json new file mode 100644 index 0000000..53a99ce --- /dev/null +++ b/public/organe/PO644511.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644511", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO644512.json b/public/organe/PO644512.json new file mode 100644 index 0000000..6b865a2 --- /dev/null +++ b/public/organe/PO644512.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644512", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO644513.json b/public/organe/PO644513.json new file mode 100644 index 0000000..570bd30 --- /dev/null +++ b/public/organe/PO644513.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644513", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO644514.json b/public/organe/PO644514.json new file mode 100644 index 0000000..b3941b9 --- /dev/null +++ b/public/organe/PO644514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644514", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO644515.json b/public/organe/PO644515.json new file mode 100644 index 0000000..5fa0abc --- /dev/null +++ b/public/organe/PO644515.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644515", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO644516.json b/public/organe/PO644516.json new file mode 100644 index 0000000..e937ffd --- /dev/null +++ b/public/organe/PO644516.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644516", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO644517.json b/public/organe/PO644517.json new file mode 100644 index 0000000..0705dbb --- /dev/null +++ b/public/organe/PO644517.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644517", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO644519.json b/public/organe/PO644519.json new file mode 100644 index 0000000..afaa44e --- /dev/null +++ b/public/organe/PO644519.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644519", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO644520.json b/public/organe/PO644520.json new file mode 100644 index 0000000..68452b9 --- /dev/null +++ b/public/organe/PO644520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644520", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO644521.json b/public/organe/PO644521.json new file mode 100644 index 0000000..16c7694 --- /dev/null +++ b/public/organe/PO644521.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644521", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO644522.json b/public/organe/PO644522.json new file mode 100644 index 0000000..ea36f03 --- /dev/null +++ b/public/organe/PO644522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644522", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO644523.json b/public/organe/PO644523.json new file mode 100644 index 0000000..042bb3d --- /dev/null +++ b/public/organe/PO644523.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644523", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO644524.json b/public/organe/PO644524.json new file mode 100644 index 0000000..7490f7f --- /dev/null +++ b/public/organe/PO644524.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644524", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO644525.json b/public/organe/PO644525.json new file mode 100644 index 0000000..2d22eeb --- /dev/null +++ b/public/organe/PO644525.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644525", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO644526.json b/public/organe/PO644526.json new file mode 100644 index 0000000..6a749d8 --- /dev/null +++ b/public/organe/PO644526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644526", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO644527.json b/public/organe/PO644527.json new file mode 100644 index 0000000..c133c37 --- /dev/null +++ b/public/organe/PO644527.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644527", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO644528.json b/public/organe/PO644528.json new file mode 100644 index 0000000..e27bdb0 --- /dev/null +++ b/public/organe/PO644528.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644528", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO644529.json b/public/organe/PO644529.json new file mode 100644 index 0000000..7490889 --- /dev/null +++ b/public/organe/PO644529.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644529", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO644530.json b/public/organe/PO644530.json new file mode 100644 index 0000000..1d27f21 --- /dev/null +++ b/public/organe/PO644530.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644530", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO644531.json b/public/organe/PO644531.json new file mode 100644 index 0000000..a231249 --- /dev/null +++ b/public/organe/PO644531.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644531", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO644532.json b/public/organe/PO644532.json new file mode 100644 index 0000000..5d39bdd --- /dev/null +++ b/public/organe/PO644532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644532", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO644533.json b/public/organe/PO644533.json new file mode 100644 index 0000000..0a1fed5 --- /dev/null +++ b/public/organe/PO644533.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644533", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO644534.json b/public/organe/PO644534.json new file mode 100644 index 0000000..960fa0c --- /dev/null +++ b/public/organe/PO644534.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644534", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO644535.json b/public/organe/PO644535.json new file mode 100644 index 0000000..ca9b389 --- /dev/null +++ b/public/organe/PO644535.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644535", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO644536.json b/public/organe/PO644536.json new file mode 100644 index 0000000..8f3ef48 --- /dev/null +++ b/public/organe/PO644536.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644536", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO644537.json b/public/organe/PO644537.json new file mode 100644 index 0000000..9396e87 --- /dev/null +++ b/public/organe/PO644537.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644537", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO644538.json b/public/organe/PO644538.json new file mode 100644 index 0000000..194c697 --- /dev/null +++ b/public/organe/PO644538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644538", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO644539.json b/public/organe/PO644539.json new file mode 100644 index 0000000..e0e6274 --- /dev/null +++ b/public/organe/PO644539.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644539", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO644540.json b/public/organe/PO644540.json new file mode 100644 index 0000000..3c62299 --- /dev/null +++ b/public/organe/PO644540.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644540", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO644541.json b/public/organe/PO644541.json new file mode 100644 index 0000000..b9657fc --- /dev/null +++ b/public/organe/PO644541.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644541", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644542.json b/public/organe/PO644542.json new file mode 100644 index 0000000..c77b521 --- /dev/null +++ b/public/organe/PO644542.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644542", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644543.json b/public/organe/PO644543.json new file mode 100644 index 0000000..cc84b2c --- /dev/null +++ b/public/organe/PO644543.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644543", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644544.json b/public/organe/PO644544.json new file mode 100644 index 0000000..918e69b --- /dev/null +++ b/public/organe/PO644544.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644544", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644545.json b/public/organe/PO644545.json new file mode 100644 index 0000000..78ab6f9 --- /dev/null +++ b/public/organe/PO644545.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644545", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644546.json b/public/organe/PO644546.json new file mode 100644 index 0000000..c32a14c --- /dev/null +++ b/public/organe/PO644546.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644546", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644547.json b/public/organe/PO644547.json new file mode 100644 index 0000000..997a003 --- /dev/null +++ b/public/organe/PO644547.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644547", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644548.json b/public/organe/PO644548.json new file mode 100644 index 0000000..2826a61 --- /dev/null +++ b/public/organe/PO644548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644548", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644549.json b/public/organe/PO644549.json new file mode 100644 index 0000000..4ddc3c1 --- /dev/null +++ b/public/organe/PO644549.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644549", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO644550.json b/public/organe/PO644550.json new file mode 100644 index 0000000..5f36be6 --- /dev/null +++ b/public/organe/PO644550.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644550", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO644551.json b/public/organe/PO644551.json new file mode 100644 index 0000000..3ce23b4 --- /dev/null +++ b/public/organe/PO644551.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644551", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO644552.json b/public/organe/PO644552.json new file mode 100644 index 0000000..ac7db1e --- /dev/null +++ b/public/organe/PO644552.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644552", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO644553.json b/public/organe/PO644553.json new file mode 100644 index 0000000..1f4fc8a --- /dev/null +++ b/public/organe/PO644553.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644553", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO644554.json b/public/organe/PO644554.json new file mode 100644 index 0000000..9d8589e --- /dev/null +++ b/public/organe/PO644554.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644554", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644555.json b/public/organe/PO644555.json new file mode 100644 index 0000000..1d9e31b --- /dev/null +++ b/public/organe/PO644555.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644555", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644556.json b/public/organe/PO644556.json new file mode 100644 index 0000000..5d0f702 --- /dev/null +++ b/public/organe/PO644556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644556", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644557.json b/public/organe/PO644557.json new file mode 100644 index 0000000..981f2df --- /dev/null +++ b/public/organe/PO644557.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644557", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644558.json b/public/organe/PO644558.json new file mode 100644 index 0000000..a8cdba5 --- /dev/null +++ b/public/organe/PO644558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644558", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644559.json b/public/organe/PO644559.json new file mode 100644 index 0000000..85d67eb --- /dev/null +++ b/public/organe/PO644559.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644559", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644560.json b/public/organe/PO644560.json new file mode 100644 index 0000000..790d74a --- /dev/null +++ b/public/organe/PO644560.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644560", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644561.json b/public/organe/PO644561.json new file mode 100644 index 0000000..ba21ac5 --- /dev/null +++ b/public/organe/PO644561.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644561", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644562.json b/public/organe/PO644562.json new file mode 100644 index 0000000..a6310d1 --- /dev/null +++ b/public/organe/PO644562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644562", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO644563.json b/public/organe/PO644563.json new file mode 100644 index 0000000..37a9296 --- /dev/null +++ b/public/organe/PO644563.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644563", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO644564.json b/public/organe/PO644564.json new file mode 100644 index 0000000..1f1453c --- /dev/null +++ b/public/organe/PO644564.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644564", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644565.json b/public/organe/PO644565.json new file mode 100644 index 0000000..7470e98 --- /dev/null +++ b/public/organe/PO644565.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644565", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644566.json b/public/organe/PO644566.json new file mode 100644 index 0000000..a874f26 --- /dev/null +++ b/public/organe/PO644566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644566", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644567.json b/public/organe/PO644567.json new file mode 100644 index 0000000..4b70e06 --- /dev/null +++ b/public/organe/PO644567.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644567", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644568.json b/public/organe/PO644568.json new file mode 100644 index 0000000..f43f9e6 --- /dev/null +++ b/public/organe/PO644568.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644568", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644569.json b/public/organe/PO644569.json new file mode 100644 index 0000000..3bfdc85 --- /dev/null +++ b/public/organe/PO644569.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644569", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644570.json b/public/organe/PO644570.json new file mode 100644 index 0000000..2bc70e4 --- /dev/null +++ b/public/organe/PO644570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644570", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644571.json b/public/organe/PO644571.json new file mode 100644 index 0000000..bb7f7dd --- /dev/null +++ b/public/organe/PO644571.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644571", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644572.json b/public/organe/PO644572.json new file mode 100644 index 0000000..c3b9051 --- /dev/null +++ b/public/organe/PO644572.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644572", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644573.json b/public/organe/PO644573.json new file mode 100644 index 0000000..c72d7d2 --- /dev/null +++ b/public/organe/PO644573.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644573", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644574.json b/public/organe/PO644574.json new file mode 100644 index 0000000..0731b79 --- /dev/null +++ b/public/organe/PO644574.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644574", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO644575.json b/public/organe/PO644575.json new file mode 100644 index 0000000..d3929b6 --- /dev/null +++ b/public/organe/PO644575.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644575", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO644576.json b/public/organe/PO644576.json new file mode 100644 index 0000000..bacebaa --- /dev/null +++ b/public/organe/PO644576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644576", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO644577.json b/public/organe/PO644577.json new file mode 100644 index 0000000..ce1e3ee --- /dev/null +++ b/public/organe/PO644577.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644577", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO644578.json b/public/organe/PO644578.json new file mode 100644 index 0000000..979dd13 --- /dev/null +++ b/public/organe/PO644578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644578", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO644579.json b/public/organe/PO644579.json new file mode 100644 index 0000000..b59d74b --- /dev/null +++ b/public/organe/PO644579.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644579", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO644580.json b/public/organe/PO644580.json new file mode 100644 index 0000000..ce5de76 --- /dev/null +++ b/public/organe/PO644580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644580", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO644581.json b/public/organe/PO644581.json new file mode 100644 index 0000000..b771d3a --- /dev/null +++ b/public/organe/PO644581.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644581", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO644582.json b/public/organe/PO644582.json new file mode 100644 index 0000000..0ef2834 --- /dev/null +++ b/public/organe/PO644582.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644582", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO644583.json b/public/organe/PO644583.json new file mode 100644 index 0000000..6a76190 --- /dev/null +++ b/public/organe/PO644583.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644583", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO644584.json b/public/organe/PO644584.json new file mode 100644 index 0000000..8212205 --- /dev/null +++ b/public/organe/PO644584.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644584", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO644585.json b/public/organe/PO644585.json new file mode 100644 index 0000000..90f9650 --- /dev/null +++ b/public/organe/PO644585.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644585", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO644586.json b/public/organe/PO644586.json new file mode 100644 index 0000000..96bb52e --- /dev/null +++ b/public/organe/PO644586.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644586", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO644587.json b/public/organe/PO644587.json new file mode 100644 index 0000000..8cd16c4 --- /dev/null +++ b/public/organe/PO644587.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644587", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO644588.json b/public/organe/PO644588.json new file mode 100644 index 0000000..5f23006 --- /dev/null +++ b/public/organe/PO644588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644588", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO644589.json b/public/organe/PO644589.json new file mode 100644 index 0000000..1a6c0d9 --- /dev/null +++ b/public/organe/PO644589.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644589", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO644590.json b/public/organe/PO644590.json new file mode 100644 index 0000000..6bd7758 --- /dev/null +++ b/public/organe/PO644590.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644590", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO644592.json b/public/organe/PO644592.json new file mode 100644 index 0000000..8f6f51c --- /dev/null +++ b/public/organe/PO644592.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644592", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644593.json b/public/organe/PO644593.json new file mode 100644 index 0000000..42dfa6b --- /dev/null +++ b/public/organe/PO644593.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644593", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644594.json b/public/organe/PO644594.json new file mode 100644 index 0000000..a5f3cc7 --- /dev/null +++ b/public/organe/PO644594.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644594", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644595.json b/public/organe/PO644595.json new file mode 100644 index 0000000..a0ca235 --- /dev/null +++ b/public/organe/PO644595.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644595", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644596.json b/public/organe/PO644596.json new file mode 100644 index 0000000..ee95da1 --- /dev/null +++ b/public/organe/PO644596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644596", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644597.json b/public/organe/PO644597.json new file mode 100644 index 0000000..fa3d04a --- /dev/null +++ b/public/organe/PO644597.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644597", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644598.json b/public/organe/PO644598.json new file mode 100644 index 0000000..99e863d --- /dev/null +++ b/public/organe/PO644598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644598", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644599.json b/public/organe/PO644599.json new file mode 100644 index 0000000..cbeeb4f --- /dev/null +++ b/public/organe/PO644599.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644599", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644600.json b/public/organe/PO644600.json new file mode 100644 index 0000000..c62a91e --- /dev/null +++ b/public/organe/PO644600.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644600", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644601.json b/public/organe/PO644601.json new file mode 100644 index 0000000..bc6b990 --- /dev/null +++ b/public/organe/PO644601.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644601", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644602.json b/public/organe/PO644602.json new file mode 100644 index 0000000..edf13df --- /dev/null +++ b/public/organe/PO644602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644602", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644603.json b/public/organe/PO644603.json new file mode 100644 index 0000000..e7b638e --- /dev/null +++ b/public/organe/PO644603.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644603", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644604.json b/public/organe/PO644604.json new file mode 100644 index 0000000..a564a73 --- /dev/null +++ b/public/organe/PO644604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644604", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644605.json b/public/organe/PO644605.json new file mode 100644 index 0000000..cae3284 --- /dev/null +++ b/public/organe/PO644605.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644605", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644606.json b/public/organe/PO644606.json new file mode 100644 index 0000000..56f13ec --- /dev/null +++ b/public/organe/PO644606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644606", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO644607.json b/public/organe/PO644607.json new file mode 100644 index 0000000..326510e --- /dev/null +++ b/public/organe/PO644607.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644607", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO644608.json b/public/organe/PO644608.json new file mode 100644 index 0000000..bad5c41 --- /dev/null +++ b/public/organe/PO644608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644608", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO644609.json b/public/organe/PO644609.json new file mode 100644 index 0000000..049eccb --- /dev/null +++ b/public/organe/PO644609.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644609", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO644610.json b/public/organe/PO644610.json new file mode 100644 index 0000000..97739cb --- /dev/null +++ b/public/organe/PO644610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644610", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO644611.json b/public/organe/PO644611.json new file mode 100644 index 0000000..26d6a54 --- /dev/null +++ b/public/organe/PO644611.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644611", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO644612.json b/public/organe/PO644612.json new file mode 100644 index 0000000..19c9ebf --- /dev/null +++ b/public/organe/PO644612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644612", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO644613.json b/public/organe/PO644613.json new file mode 100644 index 0000000..966a8a1 --- /dev/null +++ b/public/organe/PO644613.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644613", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO644614.json b/public/organe/PO644614.json new file mode 100644 index 0000000..82a02e8 --- /dev/null +++ b/public/organe/PO644614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644614", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO644615.json b/public/organe/PO644615.json new file mode 100644 index 0000000..99ae40f --- /dev/null +++ b/public/organe/PO644615.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644615", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644616.json b/public/organe/PO644616.json new file mode 100644 index 0000000..2d9e80d --- /dev/null +++ b/public/organe/PO644616.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644616", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644617.json b/public/organe/PO644617.json new file mode 100644 index 0000000..25c4c93 --- /dev/null +++ b/public/organe/PO644617.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644617", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644618.json b/public/organe/PO644618.json new file mode 100644 index 0000000..404d927 --- /dev/null +++ b/public/organe/PO644618.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644618", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644619.json b/public/organe/PO644619.json new file mode 100644 index 0000000..288c03c --- /dev/null +++ b/public/organe/PO644619.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644619", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644620.json b/public/organe/PO644620.json new file mode 100644 index 0000000..15c2468 --- /dev/null +++ b/public/organe/PO644620.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644620", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644622.json b/public/organe/PO644622.json new file mode 100644 index 0000000..3e55ed9 --- /dev/null +++ b/public/organe/PO644622.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644622", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644623.json b/public/organe/PO644623.json new file mode 100644 index 0000000..19d0654 --- /dev/null +++ b/public/organe/PO644623.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644623", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644624.json b/public/organe/PO644624.json new file mode 100644 index 0000000..f278ef5 --- /dev/null +++ b/public/organe/PO644624.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644624", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644625.json b/public/organe/PO644625.json new file mode 100644 index 0000000..f320322 --- /dev/null +++ b/public/organe/PO644625.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644625", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644626.json b/public/organe/PO644626.json new file mode 100644 index 0000000..4ea2021 --- /dev/null +++ b/public/organe/PO644626.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644626", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644627.json b/public/organe/PO644627.json new file mode 100644 index 0000000..37fa74e --- /dev/null +++ b/public/organe/PO644627.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644627", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644628.json b/public/organe/PO644628.json new file mode 100644 index 0000000..b95cea2 --- /dev/null +++ b/public/organe/PO644628.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644628", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644629.json b/public/organe/PO644629.json new file mode 100644 index 0000000..3c62fe8 --- /dev/null +++ b/public/organe/PO644629.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644629", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644630.json b/public/organe/PO644630.json new file mode 100644 index 0000000..34dc525 --- /dev/null +++ b/public/organe/PO644630.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644630", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644631.json b/public/organe/PO644631.json new file mode 100644 index 0000000..def6f91 --- /dev/null +++ b/public/organe/PO644631.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644631", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644632.json b/public/organe/PO644632.json new file mode 100644 index 0000000..88c5524 --- /dev/null +++ b/public/organe/PO644632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644632", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644633.json b/public/organe/PO644633.json new file mode 100644 index 0000000..47fd86e --- /dev/null +++ b/public/organe/PO644633.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644633", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO644634.json b/public/organe/PO644634.json new file mode 100644 index 0000000..93abd9f --- /dev/null +++ b/public/organe/PO644634.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644634", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO644635.json b/public/organe/PO644635.json new file mode 100644 index 0000000..3110b10 --- /dev/null +++ b/public/organe/PO644635.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644635", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO644636.json b/public/organe/PO644636.json new file mode 100644 index 0000000..30ad43d --- /dev/null +++ b/public/organe/PO644636.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644636", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO644637.json b/public/organe/PO644637.json new file mode 100644 index 0000000..bce277f --- /dev/null +++ b/public/organe/PO644637.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644637", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO644638.json b/public/organe/PO644638.json new file mode 100644 index 0000000..b017012 --- /dev/null +++ b/public/organe/PO644638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644638", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO644639.json b/public/organe/PO644639.json new file mode 100644 index 0000000..1f85fdc --- /dev/null +++ b/public/organe/PO644639.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644639", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO644640.json b/public/organe/PO644640.json new file mode 100644 index 0000000..29e5ede --- /dev/null +++ b/public/organe/PO644640.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644640", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO644641.json b/public/organe/PO644641.json new file mode 100644 index 0000000..f9613ed --- /dev/null +++ b/public/organe/PO644641.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644641", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644642.json b/public/organe/PO644642.json new file mode 100644 index 0000000..e30a040 --- /dev/null +++ b/public/organe/PO644642.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644642", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644643.json b/public/organe/PO644643.json new file mode 100644 index 0000000..307b14d --- /dev/null +++ b/public/organe/PO644643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644643", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644644.json b/public/organe/PO644644.json new file mode 100644 index 0000000..cd6cfc2 --- /dev/null +++ b/public/organe/PO644644.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644644", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO644646.json b/public/organe/PO644646.json new file mode 100644 index 0000000..38ecade --- /dev/null +++ b/public/organe/PO644646.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644646", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644647.json b/public/organe/PO644647.json new file mode 100644 index 0000000..0d6fb13 --- /dev/null +++ b/public/organe/PO644647.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644647", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644648.json b/public/organe/PO644648.json new file mode 100644 index 0000000..5c48dad --- /dev/null +++ b/public/organe/PO644648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644648", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644649.json b/public/organe/PO644649.json new file mode 100644 index 0000000..bc4772a --- /dev/null +++ b/public/organe/PO644649.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644649", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644650.json b/public/organe/PO644650.json new file mode 100644 index 0000000..0d8bc40 --- /dev/null +++ b/public/organe/PO644650.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644650", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644651.json b/public/organe/PO644651.json new file mode 100644 index 0000000..d3f3392 --- /dev/null +++ b/public/organe/PO644651.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644651", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644652.json b/public/organe/PO644652.json new file mode 100644 index 0000000..f191b14 --- /dev/null +++ b/public/organe/PO644652.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644652", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644653.json b/public/organe/PO644653.json new file mode 100644 index 0000000..6b1ce88 --- /dev/null +++ b/public/organe/PO644653.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644653", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO644654.json b/public/organe/PO644654.json new file mode 100644 index 0000000..fb77fa7 --- /dev/null +++ b/public/organe/PO644654.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644654", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO644655.json b/public/organe/PO644655.json new file mode 100644 index 0000000..6c9e899 --- /dev/null +++ b/public/organe/PO644655.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644655", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO644656.json b/public/organe/PO644656.json new file mode 100644 index 0000000..5cece88 --- /dev/null +++ b/public/organe/PO644656.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644656", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO644658.json b/public/organe/PO644658.json new file mode 100644 index 0000000..34391eb --- /dev/null +++ b/public/organe/PO644658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644658", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644659.json b/public/organe/PO644659.json new file mode 100644 index 0000000..25fba9d --- /dev/null +++ b/public/organe/PO644659.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644659", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644660.json b/public/organe/PO644660.json new file mode 100644 index 0000000..9021eb9 --- /dev/null +++ b/public/organe/PO644660.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644660", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644661.json b/public/organe/PO644661.json new file mode 100644 index 0000000..bc56d67 --- /dev/null +++ b/public/organe/PO644661.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644661", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644662.json b/public/organe/PO644662.json new file mode 100644 index 0000000..53ad1aa --- /dev/null +++ b/public/organe/PO644662.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644662", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644664.json b/public/organe/PO644664.json new file mode 100644 index 0000000..1fe6025 --- /dev/null +++ b/public/organe/PO644664.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644664", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644665.json b/public/organe/PO644665.json new file mode 100644 index 0000000..7dd89ea --- /dev/null +++ b/public/organe/PO644665.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644665", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644666.json b/public/organe/PO644666.json new file mode 100644 index 0000000..4f17034 --- /dev/null +++ b/public/organe/PO644666.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644666", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO644667.json b/public/organe/PO644667.json new file mode 100644 index 0000000..f7eb855 --- /dev/null +++ b/public/organe/PO644667.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644667", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO644668.json b/public/organe/PO644668.json new file mode 100644 index 0000000..35e91bb --- /dev/null +++ b/public/organe/PO644668.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644668", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO644669.json b/public/organe/PO644669.json new file mode 100644 index 0000000..81cdcdd --- /dev/null +++ b/public/organe/PO644669.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644669", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644670.json b/public/organe/PO644670.json new file mode 100644 index 0000000..4597b58 --- /dev/null +++ b/public/organe/PO644670.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644670", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644671.json b/public/organe/PO644671.json new file mode 100644 index 0000000..9b8215d --- /dev/null +++ b/public/organe/PO644671.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644671", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644672.json b/public/organe/PO644672.json new file mode 100644 index 0000000..439fd71 --- /dev/null +++ b/public/organe/PO644672.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644672", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644673.json b/public/organe/PO644673.json new file mode 100644 index 0000000..0ab525a --- /dev/null +++ b/public/organe/PO644673.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644673", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644674.json b/public/organe/PO644674.json new file mode 100644 index 0000000..f7a1885 --- /dev/null +++ b/public/organe/PO644674.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644674", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644676.json b/public/organe/PO644676.json new file mode 100644 index 0000000..8da496c --- /dev/null +++ b/public/organe/PO644676.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644676", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO644677.json b/public/organe/PO644677.json new file mode 100644 index 0000000..3734b56 --- /dev/null +++ b/public/organe/PO644677.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644677", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO644678.json b/public/organe/PO644678.json new file mode 100644 index 0000000..2a39767 --- /dev/null +++ b/public/organe/PO644678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644678", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO644679.json b/public/organe/PO644679.json new file mode 100644 index 0000000..67e7459 --- /dev/null +++ b/public/organe/PO644679.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644679", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO644680.json b/public/organe/PO644680.json new file mode 100644 index 0000000..89d17aa --- /dev/null +++ b/public/organe/PO644680.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644680", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO644681.json b/public/organe/PO644681.json new file mode 100644 index 0000000..2e00061 --- /dev/null +++ b/public/organe/PO644681.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644681", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO644682.json b/public/organe/PO644682.json new file mode 100644 index 0000000..940136c --- /dev/null +++ b/public/organe/PO644682.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644682", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO644683.json b/public/organe/PO644683.json new file mode 100644 index 0000000..563304f --- /dev/null +++ b/public/organe/PO644683.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644683", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO644684.json b/public/organe/PO644684.json new file mode 100644 index 0000000..16fd219 --- /dev/null +++ b/public/organe/PO644684.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644684", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644685.json b/public/organe/PO644685.json new file mode 100644 index 0000000..c90155e --- /dev/null +++ b/public/organe/PO644685.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644685", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644686.json b/public/organe/PO644686.json new file mode 100644 index 0000000..629c83e --- /dev/null +++ b/public/organe/PO644686.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644686", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644687.json b/public/organe/PO644687.json new file mode 100644 index 0000000..73f8033 --- /dev/null +++ b/public/organe/PO644687.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644687", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644688.json b/public/organe/PO644688.json new file mode 100644 index 0000000..e546227 --- /dev/null +++ b/public/organe/PO644688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644688", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644689.json b/public/organe/PO644689.json new file mode 100644 index 0000000..b051b98 --- /dev/null +++ b/public/organe/PO644689.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644689", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644690.json b/public/organe/PO644690.json new file mode 100644 index 0000000..e582041 --- /dev/null +++ b/public/organe/PO644690.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644690", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644691.json b/public/organe/PO644691.json new file mode 100644 index 0000000..1f0a893 --- /dev/null +++ b/public/organe/PO644691.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644691", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644692.json b/public/organe/PO644692.json new file mode 100644 index 0000000..7f6a59e --- /dev/null +++ b/public/organe/PO644692.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644692", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO644694.json b/public/organe/PO644694.json new file mode 100644 index 0000000..ad77a08 --- /dev/null +++ b/public/organe/PO644694.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644694", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO644695.json b/public/organe/PO644695.json new file mode 100644 index 0000000..d7017be --- /dev/null +++ b/public/organe/PO644695.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644695", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO644697.json b/public/organe/PO644697.json new file mode 100644 index 0000000..31f7d63 --- /dev/null +++ b/public/organe/PO644697.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644697", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644698.json b/public/organe/PO644698.json new file mode 100644 index 0000000..eae7c65 --- /dev/null +++ b/public/organe/PO644698.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644698", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644699.json b/public/organe/PO644699.json new file mode 100644 index 0000000..240ed19 --- /dev/null +++ b/public/organe/PO644699.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644699", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644700.json b/public/organe/PO644700.json new file mode 100644 index 0000000..5aa72cd --- /dev/null +++ b/public/organe/PO644700.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644700", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644701.json b/public/organe/PO644701.json new file mode 100644 index 0000000..4916003 --- /dev/null +++ b/public/organe/PO644701.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644701", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644702.json b/public/organe/PO644702.json new file mode 100644 index 0000000..4f23ad4 --- /dev/null +++ b/public/organe/PO644702.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644702", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644703.json b/public/organe/PO644703.json new file mode 100644 index 0000000..337c105 --- /dev/null +++ b/public/organe/PO644703.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644703", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644704.json b/public/organe/PO644704.json new file mode 100644 index 0000000..b594425 --- /dev/null +++ b/public/organe/PO644704.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644704", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644705.json b/public/organe/PO644705.json new file mode 100644 index 0000000..2e84683 --- /dev/null +++ b/public/organe/PO644705.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644705", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644706.json b/public/organe/PO644706.json new file mode 100644 index 0000000..704c6bf --- /dev/null +++ b/public/organe/PO644706.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644706", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644707.json b/public/organe/PO644707.json new file mode 100644 index 0000000..6614801 --- /dev/null +++ b/public/organe/PO644707.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644707", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644708.json b/public/organe/PO644708.json new file mode 100644 index 0000000..7377787 --- /dev/null +++ b/public/organe/PO644708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644708", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644709.json b/public/organe/PO644709.json new file mode 100644 index 0000000..4b9487f --- /dev/null +++ b/public/organe/PO644709.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644709", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644710.json b/public/organe/PO644710.json new file mode 100644 index 0000000..4e5f23f --- /dev/null +++ b/public/organe/PO644710.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644710", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644711.json b/public/organe/PO644711.json new file mode 100644 index 0000000..da3e551 --- /dev/null +++ b/public/organe/PO644711.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644711", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644712.json b/public/organe/PO644712.json new file mode 100644 index 0000000..475069d --- /dev/null +++ b/public/organe/PO644712.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644712", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644713.json b/public/organe/PO644713.json new file mode 100644 index 0000000..bb5ecc5 --- /dev/null +++ b/public/organe/PO644713.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644713", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644714.json b/public/organe/PO644714.json new file mode 100644 index 0000000..72c33c0 --- /dev/null +++ b/public/organe/PO644714.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644714", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644715.json b/public/organe/PO644715.json new file mode 100644 index 0000000..b32126c --- /dev/null +++ b/public/organe/PO644715.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644715", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644716.json b/public/organe/PO644716.json new file mode 100644 index 0000000..418e828 --- /dev/null +++ b/public/organe/PO644716.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644716", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644717.json b/public/organe/PO644717.json new file mode 100644 index 0000000..cd2dd4e --- /dev/null +++ b/public/organe/PO644717.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644717", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO644721.json b/public/organe/PO644721.json new file mode 100644 index 0000000..91a4736 --- /dev/null +++ b/public/organe/PO644721.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644721", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644722.json b/public/organe/PO644722.json new file mode 100644 index 0000000..d97adaf --- /dev/null +++ b/public/organe/PO644722.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644722", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644723.json b/public/organe/PO644723.json new file mode 100644 index 0000000..2082578 --- /dev/null +++ b/public/organe/PO644723.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644723", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644724.json b/public/organe/PO644724.json new file mode 100644 index 0000000..1c9de72 --- /dev/null +++ b/public/organe/PO644724.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644724", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644725.json b/public/organe/PO644725.json new file mode 100644 index 0000000..e54173f --- /dev/null +++ b/public/organe/PO644725.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644725", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644726.json b/public/organe/PO644726.json new file mode 100644 index 0000000..e764e2e --- /dev/null +++ b/public/organe/PO644726.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644726", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644727.json b/public/organe/PO644727.json new file mode 100644 index 0000000..a744a76 --- /dev/null +++ b/public/organe/PO644727.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644727", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644728.json b/public/organe/PO644728.json new file mode 100644 index 0000000..2c5cb5e --- /dev/null +++ b/public/organe/PO644728.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644728", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO644729.json b/public/organe/PO644729.json new file mode 100644 index 0000000..9d5216e --- /dev/null +++ b/public/organe/PO644729.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644729", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO644730.json b/public/organe/PO644730.json new file mode 100644 index 0000000..a80aa80 --- /dev/null +++ b/public/organe/PO644730.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644730", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO644731.json b/public/organe/PO644731.json new file mode 100644 index 0000000..93751c9 --- /dev/null +++ b/public/organe/PO644731.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644731", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644732.json b/public/organe/PO644732.json new file mode 100644 index 0000000..1389ae5 --- /dev/null +++ b/public/organe/PO644732.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644732", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644733.json b/public/organe/PO644733.json new file mode 100644 index 0000000..4fcc2d7 --- /dev/null +++ b/public/organe/PO644733.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644733", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644734.json b/public/organe/PO644734.json new file mode 100644 index 0000000..8eec0fa --- /dev/null +++ b/public/organe/PO644734.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644734", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644735.json b/public/organe/PO644735.json new file mode 100644 index 0000000..cc950e2 --- /dev/null +++ b/public/organe/PO644735.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644735", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644736.json b/public/organe/PO644736.json new file mode 100644 index 0000000..a6ea1b7 --- /dev/null +++ b/public/organe/PO644736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644736", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644737.json b/public/organe/PO644737.json new file mode 100644 index 0000000..f00910a --- /dev/null +++ b/public/organe/PO644737.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644737", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644738.json b/public/organe/PO644738.json new file mode 100644 index 0000000..5da9423 --- /dev/null +++ b/public/organe/PO644738.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644738", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644739.json b/public/organe/PO644739.json new file mode 100644 index 0000000..c487376 --- /dev/null +++ b/public/organe/PO644739.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644739", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644740.json b/public/organe/PO644740.json new file mode 100644 index 0000000..e820426 --- /dev/null +++ b/public/organe/PO644740.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644740", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644741.json b/public/organe/PO644741.json new file mode 100644 index 0000000..dc55d74 --- /dev/null +++ b/public/organe/PO644741.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644741", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644742.json b/public/organe/PO644742.json new file mode 100644 index 0000000..7d0c469 --- /dev/null +++ b/public/organe/PO644742.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644742", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO644745.json b/public/organe/PO644745.json new file mode 100644 index 0000000..3279fd6 --- /dev/null +++ b/public/organe/PO644745.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644745", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO644746.json b/public/organe/PO644746.json new file mode 100644 index 0000000..214d115 --- /dev/null +++ b/public/organe/PO644746.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644746", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO644747.json b/public/organe/PO644747.json new file mode 100644 index 0000000..d15b79f --- /dev/null +++ b/public/organe/PO644747.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644747", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO644748.json b/public/organe/PO644748.json new file mode 100644 index 0000000..e8db98f --- /dev/null +++ b/public/organe/PO644748.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644748", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO644749.json b/public/organe/PO644749.json new file mode 100644 index 0000000..5bb225a --- /dev/null +++ b/public/organe/PO644749.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644749", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO644751.json b/public/organe/PO644751.json new file mode 100644 index 0000000..9f693bb --- /dev/null +++ b/public/organe/PO644751.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644751", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO644752.json b/public/organe/PO644752.json new file mode 100644 index 0000000..65409f6 --- /dev/null +++ b/public/organe/PO644752.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644752", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO644753.json b/public/organe/PO644753.json new file mode 100644 index 0000000..1dc89ac --- /dev/null +++ b/public/organe/PO644753.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644753", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO644754.json b/public/organe/PO644754.json new file mode 100644 index 0000000..dfd28bc --- /dev/null +++ b/public/organe/PO644754.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644754", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO644755.json b/public/organe/PO644755.json new file mode 100644 index 0000000..29dbcd3 --- /dev/null +++ b/public/organe/PO644755.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644755", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO644756.json b/public/organe/PO644756.json new file mode 100644 index 0000000..d5543f2 --- /dev/null +++ b/public/organe/PO644756.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644756", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO644757.json b/public/organe/PO644757.json new file mode 100644 index 0000000..8eed866 --- /dev/null +++ b/public/organe/PO644757.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644757", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO644758.json b/public/organe/PO644758.json new file mode 100644 index 0000000..d47e715 --- /dev/null +++ b/public/organe/PO644758.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644758", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO644760.json b/public/organe/PO644760.json new file mode 100644 index 0000000..8fba96b --- /dev/null +++ b/public/organe/PO644760.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644760", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO644761.json b/public/organe/PO644761.json new file mode 100644 index 0000000..d695f3c --- /dev/null +++ b/public/organe/PO644761.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644761", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO644762.json b/public/organe/PO644762.json new file mode 100644 index 0000000..109ebf2 --- /dev/null +++ b/public/organe/PO644762.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644762", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO644763.json b/public/organe/PO644763.json new file mode 100644 index 0000000..a377d3d --- /dev/null +++ b/public/organe/PO644763.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644763", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO644764.json b/public/organe/PO644764.json new file mode 100644 index 0000000..f6926fd --- /dev/null +++ b/public/organe/PO644764.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644764", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644765.json b/public/organe/PO644765.json new file mode 100644 index 0000000..318d936 --- /dev/null +++ b/public/organe/PO644765.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644765", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644766.json b/public/organe/PO644766.json new file mode 100644 index 0000000..8019d5f --- /dev/null +++ b/public/organe/PO644766.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644766", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644767.json b/public/organe/PO644767.json new file mode 100644 index 0000000..d4cf42f --- /dev/null +++ b/public/organe/PO644767.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644767", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644768.json b/public/organe/PO644768.json new file mode 100644 index 0000000..69c4595 --- /dev/null +++ b/public/organe/PO644768.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644768", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644769.json b/public/organe/PO644769.json new file mode 100644 index 0000000..d803379 --- /dev/null +++ b/public/organe/PO644769.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644769", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644770.json b/public/organe/PO644770.json new file mode 100644 index 0000000..1d3b8df --- /dev/null +++ b/public/organe/PO644770.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644770", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644771.json b/public/organe/PO644771.json new file mode 100644 index 0000000..64109a6 --- /dev/null +++ b/public/organe/PO644771.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644771", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644772.json b/public/organe/PO644772.json new file mode 100644 index 0000000..188bc93 --- /dev/null +++ b/public/organe/PO644772.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644772", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644773.json b/public/organe/PO644773.json new file mode 100644 index 0000000..5f4aa09 --- /dev/null +++ b/public/organe/PO644773.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644773", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644774.json b/public/organe/PO644774.json new file mode 100644 index 0000000..c8e6f2e --- /dev/null +++ b/public/organe/PO644774.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644774", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644775.json b/public/organe/PO644775.json new file mode 100644 index 0000000..7901da7 --- /dev/null +++ b/public/organe/PO644775.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644775", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644776.json b/public/organe/PO644776.json new file mode 100644 index 0000000..0e116c6 --- /dev/null +++ b/public/organe/PO644776.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644776", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644777.json b/public/organe/PO644777.json new file mode 100644 index 0000000..fd75bed --- /dev/null +++ b/public/organe/PO644777.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644777", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644778.json b/public/organe/PO644778.json new file mode 100644 index 0000000..bcf5a35 --- /dev/null +++ b/public/organe/PO644778.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644778", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO644780.json b/public/organe/PO644780.json new file mode 100644 index 0000000..778a266 --- /dev/null +++ b/public/organe/PO644780.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644780", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644781.json b/public/organe/PO644781.json new file mode 100644 index 0000000..54dc57a --- /dev/null +++ b/public/organe/PO644781.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644781", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644782.json b/public/organe/PO644782.json new file mode 100644 index 0000000..f5ed52c --- /dev/null +++ b/public/organe/PO644782.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644782", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644783.json b/public/organe/PO644783.json new file mode 100644 index 0000000..bac3a86 --- /dev/null +++ b/public/organe/PO644783.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644783", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644784.json b/public/organe/PO644784.json new file mode 100644 index 0000000..50d0e43 --- /dev/null +++ b/public/organe/PO644784.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644784", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644785.json b/public/organe/PO644785.json new file mode 100644 index 0000000..34df3ad --- /dev/null +++ b/public/organe/PO644785.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644785", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644786.json b/public/organe/PO644786.json new file mode 100644 index 0000000..39b7e5c --- /dev/null +++ b/public/organe/PO644786.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644786", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644787.json b/public/organe/PO644787.json new file mode 100644 index 0000000..776c5e6 --- /dev/null +++ b/public/organe/PO644787.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644787", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644788.json b/public/organe/PO644788.json new file mode 100644 index 0000000..52879b0 --- /dev/null +++ b/public/organe/PO644788.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644788", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644789.json b/public/organe/PO644789.json new file mode 100644 index 0000000..916b62d --- /dev/null +++ b/public/organe/PO644789.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644789", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644790.json b/public/organe/PO644790.json new file mode 100644 index 0000000..9654b36 --- /dev/null +++ b/public/organe/PO644790.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644790", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644791.json b/public/organe/PO644791.json new file mode 100644 index 0000000..294506b --- /dev/null +++ b/public/organe/PO644791.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644791", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644792.json b/public/organe/PO644792.json new file mode 100644 index 0000000..bd49429 --- /dev/null +++ b/public/organe/PO644792.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644792", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644793.json b/public/organe/PO644793.json new file mode 100644 index 0000000..a99f530 --- /dev/null +++ b/public/organe/PO644793.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644793", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644794.json b/public/organe/PO644794.json new file mode 100644 index 0000000..4654e4e --- /dev/null +++ b/public/organe/PO644794.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644794", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644795.json b/public/organe/PO644795.json new file mode 100644 index 0000000..92e2f10 --- /dev/null +++ b/public/organe/PO644795.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644795", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO644797.json b/public/organe/PO644797.json new file mode 100644 index 0000000..0b7089f --- /dev/null +++ b/public/organe/PO644797.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644797", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644798.json b/public/organe/PO644798.json new file mode 100644 index 0000000..aab7eed --- /dev/null +++ b/public/organe/PO644798.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644798", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644799.json b/public/organe/PO644799.json new file mode 100644 index 0000000..c20fd43 --- /dev/null +++ b/public/organe/PO644799.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644799", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644800.json b/public/organe/PO644800.json new file mode 100644 index 0000000..e8fcd2e --- /dev/null +++ b/public/organe/PO644800.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644800", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644801.json b/public/organe/PO644801.json new file mode 100644 index 0000000..17c0c03 --- /dev/null +++ b/public/organe/PO644801.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644801", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO644803.json b/public/organe/PO644803.json new file mode 100644 index 0000000..c518f8a --- /dev/null +++ b/public/organe/PO644803.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644803", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO644804.json b/public/organe/PO644804.json new file mode 100644 index 0000000..6890407 --- /dev/null +++ b/public/organe/PO644804.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644804", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO644805.json b/public/organe/PO644805.json new file mode 100644 index 0000000..bc6fdd7 --- /dev/null +++ b/public/organe/PO644805.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644805", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO644806.json b/public/organe/PO644806.json new file mode 100644 index 0000000..a1bf7fc --- /dev/null +++ b/public/organe/PO644806.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644806", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO644807.json b/public/organe/PO644807.json new file mode 100644 index 0000000..f0dbdfc --- /dev/null +++ b/public/organe/PO644807.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644807", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO644808.json b/public/organe/PO644808.json new file mode 100644 index 0000000..aedb069 --- /dev/null +++ b/public/organe/PO644808.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644808", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO644809.json b/public/organe/PO644809.json new file mode 100644 index 0000000..47d37fc --- /dev/null +++ b/public/organe/PO644809.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644809", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO644810.json b/public/organe/PO644810.json new file mode 100644 index 0000000..c2dde05 --- /dev/null +++ b/public/organe/PO644810.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644810", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO644811.json b/public/organe/PO644811.json new file mode 100644 index 0000000..8260679 --- /dev/null +++ b/public/organe/PO644811.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644811", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO644812.json b/public/organe/PO644812.json new file mode 100644 index 0000000..506efb5 --- /dev/null +++ b/public/organe/PO644812.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644812", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO644813.json b/public/organe/PO644813.json new file mode 100644 index 0000000..07cdeb7 --- /dev/null +++ b/public/organe/PO644813.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644813", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO644814.json b/public/organe/PO644814.json new file mode 100644 index 0000000..a5afe41 --- /dev/null +++ b/public/organe/PO644814.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644814", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO644815.json b/public/organe/PO644815.json new file mode 100644 index 0000000..939bff2 --- /dev/null +++ b/public/organe/PO644815.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644815", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO644816.json b/public/organe/PO644816.json new file mode 100644 index 0000000..9ce234a --- /dev/null +++ b/public/organe/PO644816.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644816", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644817.json b/public/organe/PO644817.json new file mode 100644 index 0000000..fa6b6d1 --- /dev/null +++ b/public/organe/PO644817.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644817", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644818.json b/public/organe/PO644818.json new file mode 100644 index 0000000..0fb3998 --- /dev/null +++ b/public/organe/PO644818.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644818", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644819.json b/public/organe/PO644819.json new file mode 100644 index 0000000..1214a2a --- /dev/null +++ b/public/organe/PO644819.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644819", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644820.json b/public/organe/PO644820.json new file mode 100644 index 0000000..9fd3eda --- /dev/null +++ b/public/organe/PO644820.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644820", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644821.json b/public/organe/PO644821.json new file mode 100644 index 0000000..31d0e21 --- /dev/null +++ b/public/organe/PO644821.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644821", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644822.json b/public/organe/PO644822.json new file mode 100644 index 0000000..018060c --- /dev/null +++ b/public/organe/PO644822.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644822", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644823.json b/public/organe/PO644823.json new file mode 100644 index 0000000..514b00b --- /dev/null +++ b/public/organe/PO644823.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644823", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644824.json b/public/organe/PO644824.json new file mode 100644 index 0000000..975e77d --- /dev/null +++ b/public/organe/PO644824.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644824", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644825.json b/public/organe/PO644825.json new file mode 100644 index 0000000..6ff085c --- /dev/null +++ b/public/organe/PO644825.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644825", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644826.json b/public/organe/PO644826.json new file mode 100644 index 0000000..f30eec0 --- /dev/null +++ b/public/organe/PO644826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644826", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644827.json b/public/organe/PO644827.json new file mode 100644 index 0000000..bb48015 --- /dev/null +++ b/public/organe/PO644827.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644827", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644828.json b/public/organe/PO644828.json new file mode 100644 index 0000000..f306d5e --- /dev/null +++ b/public/organe/PO644828.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644828", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644829.json b/public/organe/PO644829.json new file mode 100644 index 0000000..04a8200 --- /dev/null +++ b/public/organe/PO644829.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644829", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644830.json b/public/organe/PO644830.json new file mode 100644 index 0000000..3f31bf3 --- /dev/null +++ b/public/organe/PO644830.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644830", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644831.json b/public/organe/PO644831.json new file mode 100644 index 0000000..769122e --- /dev/null +++ b/public/organe/PO644831.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644831", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644832.json b/public/organe/PO644832.json new file mode 100644 index 0000000..6e1ba97 --- /dev/null +++ b/public/organe/PO644832.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644832", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644833.json b/public/organe/PO644833.json new file mode 100644 index 0000000..a241836 --- /dev/null +++ b/public/organe/PO644833.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644833", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO644837.json b/public/organe/PO644837.json new file mode 100644 index 0000000..f729c4e --- /dev/null +++ b/public/organe/PO644837.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644837", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644838.json b/public/organe/PO644838.json new file mode 100644 index 0000000..b19d199 --- /dev/null +++ b/public/organe/PO644838.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644838", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644839.json b/public/organe/PO644839.json new file mode 100644 index 0000000..e81aa51 --- /dev/null +++ b/public/organe/PO644839.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644839", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644840.json b/public/organe/PO644840.json new file mode 100644 index 0000000..4976d15 --- /dev/null +++ b/public/organe/PO644840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644840", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644841.json b/public/organe/PO644841.json new file mode 100644 index 0000000..49bc592 --- /dev/null +++ b/public/organe/PO644841.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644841", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644842.json b/public/organe/PO644842.json new file mode 100644 index 0000000..d84cb97 --- /dev/null +++ b/public/organe/PO644842.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644842", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644843.json b/public/organe/PO644843.json new file mode 100644 index 0000000..caaf926 --- /dev/null +++ b/public/organe/PO644843.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644843", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644844.json b/public/organe/PO644844.json new file mode 100644 index 0000000..f8e7571 --- /dev/null +++ b/public/organe/PO644844.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644844", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644845.json b/public/organe/PO644845.json new file mode 100644 index 0000000..f5e1f0c --- /dev/null +++ b/public/organe/PO644845.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644845", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644846.json b/public/organe/PO644846.json new file mode 100644 index 0000000..0a3cd3c --- /dev/null +++ b/public/organe/PO644846.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644846", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO644849.json b/public/organe/PO644849.json new file mode 100644 index 0000000..a6599d2 --- /dev/null +++ b/public/organe/PO644849.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644849", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644850.json b/public/organe/PO644850.json new file mode 100644 index 0000000..e9bbe68 --- /dev/null +++ b/public/organe/PO644850.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644850", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644851.json b/public/organe/PO644851.json new file mode 100644 index 0000000..612c96a --- /dev/null +++ b/public/organe/PO644851.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644851", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644852.json b/public/organe/PO644852.json new file mode 100644 index 0000000..06608cd --- /dev/null +++ b/public/organe/PO644852.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644852", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644853.json b/public/organe/PO644853.json new file mode 100644 index 0000000..b8f321e --- /dev/null +++ b/public/organe/PO644853.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644853", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644854.json b/public/organe/PO644854.json new file mode 100644 index 0000000..ca5a5bf --- /dev/null +++ b/public/organe/PO644854.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644854", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644855.json b/public/organe/PO644855.json new file mode 100644 index 0000000..5755caa --- /dev/null +++ b/public/organe/PO644855.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644855", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644856.json b/public/organe/PO644856.json new file mode 100644 index 0000000..c07f786 --- /dev/null +++ b/public/organe/PO644856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644856", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644857.json b/public/organe/PO644857.json new file mode 100644 index 0000000..6755480 --- /dev/null +++ b/public/organe/PO644857.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644857", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644858.json b/public/organe/PO644858.json new file mode 100644 index 0000000..8f46300 --- /dev/null +++ b/public/organe/PO644858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644858", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644859.json b/public/organe/PO644859.json new file mode 100644 index 0000000..60bb42b --- /dev/null +++ b/public/organe/PO644859.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644859", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644860.json b/public/organe/PO644860.json new file mode 100644 index 0000000..90c93f0 --- /dev/null +++ b/public/organe/PO644860.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644860", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644861.json b/public/organe/PO644861.json new file mode 100644 index 0000000..edd7143 --- /dev/null +++ b/public/organe/PO644861.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644861", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644862.json b/public/organe/PO644862.json new file mode 100644 index 0000000..75d7b07 --- /dev/null +++ b/public/organe/PO644862.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644862", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644863.json b/public/organe/PO644863.json new file mode 100644 index 0000000..a30f2be --- /dev/null +++ b/public/organe/PO644863.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644863", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644864.json b/public/organe/PO644864.json new file mode 100644 index 0000000..ef66a42 --- /dev/null +++ b/public/organe/PO644864.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644864", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644865.json b/public/organe/PO644865.json new file mode 100644 index 0000000..0203828 --- /dev/null +++ b/public/organe/PO644865.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644865", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644866.json b/public/organe/PO644866.json new file mode 100644 index 0000000..0bd6428 --- /dev/null +++ b/public/organe/PO644866.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644866", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644867.json b/public/organe/PO644867.json new file mode 100644 index 0000000..3d43247 --- /dev/null +++ b/public/organe/PO644867.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644867", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644868.json b/public/organe/PO644868.json new file mode 100644 index 0000000..21367cb --- /dev/null +++ b/public/organe/PO644868.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644868", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644869.json b/public/organe/PO644869.json new file mode 100644 index 0000000..c3c3975 --- /dev/null +++ b/public/organe/PO644869.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644869", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO644870.json b/public/organe/PO644870.json new file mode 100644 index 0000000..b57ece0 --- /dev/null +++ b/public/organe/PO644870.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644870", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO644871.json b/public/organe/PO644871.json new file mode 100644 index 0000000..f614182 --- /dev/null +++ b/public/organe/PO644871.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644871", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO644872.json b/public/organe/PO644872.json new file mode 100644 index 0000000..cec7643 --- /dev/null +++ b/public/organe/PO644872.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644872", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO644874.json b/public/organe/PO644874.json new file mode 100644 index 0000000..858a0dd --- /dev/null +++ b/public/organe/PO644874.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644874", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO644875.json b/public/organe/PO644875.json new file mode 100644 index 0000000..3c6221a --- /dev/null +++ b/public/organe/PO644875.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644875", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO644876.json b/public/organe/PO644876.json new file mode 100644 index 0000000..6e56415 --- /dev/null +++ b/public/organe/PO644876.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644876", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO644877.json b/public/organe/PO644877.json new file mode 100644 index 0000000..9afa8d5 --- /dev/null +++ b/public/organe/PO644877.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644877", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO644878.json b/public/organe/PO644878.json new file mode 100644 index 0000000..297d2c2 --- /dev/null +++ b/public/organe/PO644878.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644878", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO644880.json b/public/organe/PO644880.json new file mode 100644 index 0000000..cdd4517 --- /dev/null +++ b/public/organe/PO644880.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644880", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO644881.json b/public/organe/PO644881.json new file mode 100644 index 0000000..ceef8e8 --- /dev/null +++ b/public/organe/PO644881.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644881", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO644882.json b/public/organe/PO644882.json new file mode 100644 index 0000000..306e25f --- /dev/null +++ b/public/organe/PO644882.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644882", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO644884.json b/public/organe/PO644884.json new file mode 100644 index 0000000..9133f4a --- /dev/null +++ b/public/organe/PO644884.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644884", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644885.json b/public/organe/PO644885.json new file mode 100644 index 0000000..663132d --- /dev/null +++ b/public/organe/PO644885.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644885", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644886.json b/public/organe/PO644886.json new file mode 100644 index 0000000..79ef777 --- /dev/null +++ b/public/organe/PO644886.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644886", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO644887.json b/public/organe/PO644887.json new file mode 100644 index 0000000..8cff887 --- /dev/null +++ b/public/organe/PO644887.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644887", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO644888.json b/public/organe/PO644888.json new file mode 100644 index 0000000..f96cf03 --- /dev/null +++ b/public/organe/PO644888.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644888", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO644889.json b/public/organe/PO644889.json new file mode 100644 index 0000000..787c0fc --- /dev/null +++ b/public/organe/PO644889.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644889", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO644890.json b/public/organe/PO644890.json new file mode 100644 index 0000000..8b2d1fc --- /dev/null +++ b/public/organe/PO644890.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644890", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO644891.json b/public/organe/PO644891.json new file mode 100644 index 0000000..221a239 --- /dev/null +++ b/public/organe/PO644891.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644891", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO644892.json b/public/organe/PO644892.json new file mode 100644 index 0000000..3b48df0 --- /dev/null +++ b/public/organe/PO644892.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644892", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO644893.json b/public/organe/PO644893.json new file mode 100644 index 0000000..249d67e --- /dev/null +++ b/public/organe/PO644893.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644893", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO644894.json b/public/organe/PO644894.json new file mode 100644 index 0000000..ced2738 --- /dev/null +++ b/public/organe/PO644894.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644894", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO644895.json b/public/organe/PO644895.json new file mode 100644 index 0000000..051dfd6 --- /dev/null +++ b/public/organe/PO644895.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644895", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO644896.json b/public/organe/PO644896.json new file mode 100644 index 0000000..f3e99bb --- /dev/null +++ b/public/organe/PO644896.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644896", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO644897.json b/public/organe/PO644897.json new file mode 100644 index 0000000..8de02ad --- /dev/null +++ b/public/organe/PO644897.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644897", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO644898.json b/public/organe/PO644898.json new file mode 100644 index 0000000..04a6d73 --- /dev/null +++ b/public/organe/PO644898.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644898", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO644899.json b/public/organe/PO644899.json new file mode 100644 index 0000000..9cd9cce --- /dev/null +++ b/public/organe/PO644899.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644899", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO644900.json b/public/organe/PO644900.json new file mode 100644 index 0000000..f7dd070 --- /dev/null +++ b/public/organe/PO644900.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644900", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO644901.json b/public/organe/PO644901.json new file mode 100644 index 0000000..20fc137 --- /dev/null +++ b/public/organe/PO644901.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644901", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO644902.json b/public/organe/PO644902.json new file mode 100644 index 0000000..e9de7d3 --- /dev/null +++ b/public/organe/PO644902.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644902", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO644903.json b/public/organe/PO644903.json new file mode 100644 index 0000000..cd47891 --- /dev/null +++ b/public/organe/PO644903.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644903", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO644904.json b/public/organe/PO644904.json new file mode 100644 index 0000000..7114eff --- /dev/null +++ b/public/organe/PO644904.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644904", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO644905.json b/public/organe/PO644905.json new file mode 100644 index 0000000..ee18280 --- /dev/null +++ b/public/organe/PO644905.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644905", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO644906.json b/public/organe/PO644906.json new file mode 100644 index 0000000..bae9465 --- /dev/null +++ b/public/organe/PO644906.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644906", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO644907.json b/public/organe/PO644907.json new file mode 100644 index 0000000..9a531c8 --- /dev/null +++ b/public/organe/PO644907.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644907", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO644908.json b/public/organe/PO644908.json new file mode 100644 index 0000000..603f34c --- /dev/null +++ b/public/organe/PO644908.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644908", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO644910.json b/public/organe/PO644910.json new file mode 100644 index 0000000..190c165 --- /dev/null +++ b/public/organe/PO644910.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644910", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO644911.json b/public/organe/PO644911.json new file mode 100644 index 0000000..be0426a --- /dev/null +++ b/public/organe/PO644911.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644911", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO644912.json b/public/organe/PO644912.json new file mode 100644 index 0000000..fbe4ec0 --- /dev/null +++ b/public/organe/PO644912.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644912", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO644913.json b/public/organe/PO644913.json new file mode 100644 index 0000000..314a4db --- /dev/null +++ b/public/organe/PO644913.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644913", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO644914.json b/public/organe/PO644914.json new file mode 100644 index 0000000..fd371a4 --- /dev/null +++ b/public/organe/PO644914.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644914", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644915.json b/public/organe/PO644915.json new file mode 100644 index 0000000..0e2c8f9 --- /dev/null +++ b/public/organe/PO644915.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644915", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644916.json b/public/organe/PO644916.json new file mode 100644 index 0000000..38fa3f8 --- /dev/null +++ b/public/organe/PO644916.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644916", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644917.json b/public/organe/PO644917.json new file mode 100644 index 0000000..d6d6db8 --- /dev/null +++ b/public/organe/PO644917.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644917", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO644918.json b/public/organe/PO644918.json new file mode 100644 index 0000000..1f77c13 --- /dev/null +++ b/public/organe/PO644918.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644918", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO644919.json b/public/organe/PO644919.json new file mode 100644 index 0000000..6415827 --- /dev/null +++ b/public/organe/PO644919.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644919", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644920.json b/public/organe/PO644920.json new file mode 100644 index 0000000..328b1fe --- /dev/null +++ b/public/organe/PO644920.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644920", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644921.json b/public/organe/PO644921.json new file mode 100644 index 0000000..beaaa7e --- /dev/null +++ b/public/organe/PO644921.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644921", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644922.json b/public/organe/PO644922.json new file mode 100644 index 0000000..a7b1d78 --- /dev/null +++ b/public/organe/PO644922.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644922", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644923.json b/public/organe/PO644923.json new file mode 100644 index 0000000..88ceb92 --- /dev/null +++ b/public/organe/PO644923.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644923", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644924.json b/public/organe/PO644924.json new file mode 100644 index 0000000..403beb8 --- /dev/null +++ b/public/organe/PO644924.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644924", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644925.json b/public/organe/PO644925.json new file mode 100644 index 0000000..d2241ac --- /dev/null +++ b/public/organe/PO644925.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644925", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644926.json b/public/organe/PO644926.json new file mode 100644 index 0000000..f3eba2f --- /dev/null +++ b/public/organe/PO644926.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644926", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644927.json b/public/organe/PO644927.json new file mode 100644 index 0000000..01ed8ac --- /dev/null +++ b/public/organe/PO644927.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644927", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644928.json b/public/organe/PO644928.json new file mode 100644 index 0000000..5b20270 --- /dev/null +++ b/public/organe/PO644928.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644928", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO644929.json b/public/organe/PO644929.json new file mode 100644 index 0000000..11c6b65 --- /dev/null +++ b/public/organe/PO644929.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644929", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644930.json b/public/organe/PO644930.json new file mode 100644 index 0000000..9d1f623 --- /dev/null +++ b/public/organe/PO644930.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644930", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644931.json b/public/organe/PO644931.json new file mode 100644 index 0000000..b3f69ce --- /dev/null +++ b/public/organe/PO644931.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644931", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644932.json b/public/organe/PO644932.json new file mode 100644 index 0000000..f7ac9bc --- /dev/null +++ b/public/organe/PO644932.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644932", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644933.json b/public/organe/PO644933.json new file mode 100644 index 0000000..adecb5f --- /dev/null +++ b/public/organe/PO644933.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644933", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644934.json b/public/organe/PO644934.json new file mode 100644 index 0000000..89f42f7 --- /dev/null +++ b/public/organe/PO644934.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644934", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644935.json b/public/organe/PO644935.json new file mode 100644 index 0000000..114615b --- /dev/null +++ b/public/organe/PO644935.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644935", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644936.json b/public/organe/PO644936.json new file mode 100644 index 0000000..5668c37 --- /dev/null +++ b/public/organe/PO644936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644936", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644937.json b/public/organe/PO644937.json new file mode 100644 index 0000000..a5c85f0 --- /dev/null +++ b/public/organe/PO644937.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644937", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644938.json b/public/organe/PO644938.json new file mode 100644 index 0000000..49d02d0 --- /dev/null +++ b/public/organe/PO644938.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644938", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644939.json b/public/organe/PO644939.json new file mode 100644 index 0000000..3a54668 --- /dev/null +++ b/public/organe/PO644939.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644939", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644940.json b/public/organe/PO644940.json new file mode 100644 index 0000000..8331b7e --- /dev/null +++ b/public/organe/PO644940.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644940", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644941.json b/public/organe/PO644941.json new file mode 100644 index 0000000..47cca86 --- /dev/null +++ b/public/organe/PO644941.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644941", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO644942.json b/public/organe/PO644942.json new file mode 100644 index 0000000..6371a3c --- /dev/null +++ b/public/organe/PO644942.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644942", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644943.json b/public/organe/PO644943.json new file mode 100644 index 0000000..0d7d0a9 --- /dev/null +++ b/public/organe/PO644943.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644943", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644944.json b/public/organe/PO644944.json new file mode 100644 index 0000000..32a22f1 --- /dev/null +++ b/public/organe/PO644944.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644944", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644945.json b/public/organe/PO644945.json new file mode 100644 index 0000000..1ed18b5 --- /dev/null +++ b/public/organe/PO644945.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644945", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644946.json b/public/organe/PO644946.json new file mode 100644 index 0000000..382c37a --- /dev/null +++ b/public/organe/PO644946.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644946", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644947.json b/public/organe/PO644947.json new file mode 100644 index 0000000..41e511e --- /dev/null +++ b/public/organe/PO644947.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644947", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644948.json b/public/organe/PO644948.json new file mode 100644 index 0000000..3c7b77b --- /dev/null +++ b/public/organe/PO644948.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644948", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644949.json b/public/organe/PO644949.json new file mode 100644 index 0000000..328c40f --- /dev/null +++ b/public/organe/PO644949.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644949", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644950.json b/public/organe/PO644950.json new file mode 100644 index 0000000..d3da96f --- /dev/null +++ b/public/organe/PO644950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644950", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644951.json b/public/organe/PO644951.json new file mode 100644 index 0000000..5348fd9 --- /dev/null +++ b/public/organe/PO644951.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644951", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644952.json b/public/organe/PO644952.json new file mode 100644 index 0000000..5f981cf --- /dev/null +++ b/public/organe/PO644952.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644952", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644953.json b/public/organe/PO644953.json new file mode 100644 index 0000000..bd4f8e4 --- /dev/null +++ b/public/organe/PO644953.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644953", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO644955.json b/public/organe/PO644955.json new file mode 100644 index 0000000..f13409b --- /dev/null +++ b/public/organe/PO644955.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644955", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644956.json b/public/organe/PO644956.json new file mode 100644 index 0000000..f150166 --- /dev/null +++ b/public/organe/PO644956.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644956", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644957.json b/public/organe/PO644957.json new file mode 100644 index 0000000..fe4e36f --- /dev/null +++ b/public/organe/PO644957.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644957", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644958.json b/public/organe/PO644958.json new file mode 100644 index 0000000..0051d4b --- /dev/null +++ b/public/organe/PO644958.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644958", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644959.json b/public/organe/PO644959.json new file mode 100644 index 0000000..197e046 --- /dev/null +++ b/public/organe/PO644959.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644959", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644960.json b/public/organe/PO644960.json new file mode 100644 index 0000000..9e77111 --- /dev/null +++ b/public/organe/PO644960.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644960", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644961.json b/public/organe/PO644961.json new file mode 100644 index 0000000..c4dd59d --- /dev/null +++ b/public/organe/PO644961.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644961", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644962.json b/public/organe/PO644962.json new file mode 100644 index 0000000..36eae97 --- /dev/null +++ b/public/organe/PO644962.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644962", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644963.json b/public/organe/PO644963.json new file mode 100644 index 0000000..85ca809 --- /dev/null +++ b/public/organe/PO644963.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644963", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644964.json b/public/organe/PO644964.json new file mode 100644 index 0000000..47b80f4 --- /dev/null +++ b/public/organe/PO644964.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644964", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644965.json b/public/organe/PO644965.json new file mode 100644 index 0000000..8cae546 --- /dev/null +++ b/public/organe/PO644965.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644965", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO644967.json b/public/organe/PO644967.json new file mode 100644 index 0000000..79fdc3a --- /dev/null +++ b/public/organe/PO644967.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644967", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644968.json b/public/organe/PO644968.json new file mode 100644 index 0000000..ca65bbc --- /dev/null +++ b/public/organe/PO644968.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644968", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644969.json b/public/organe/PO644969.json new file mode 100644 index 0000000..6000594 --- /dev/null +++ b/public/organe/PO644969.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644969", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644970.json b/public/organe/PO644970.json new file mode 100644 index 0000000..a9b8e9a --- /dev/null +++ b/public/organe/PO644970.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644970", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644971.json b/public/organe/PO644971.json new file mode 100644 index 0000000..0040d0c --- /dev/null +++ b/public/organe/PO644971.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644971", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644972.json b/public/organe/PO644972.json new file mode 100644 index 0000000..454cf26 --- /dev/null +++ b/public/organe/PO644972.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644972", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644973.json b/public/organe/PO644973.json new file mode 100644 index 0000000..5366cd9 --- /dev/null +++ b/public/organe/PO644973.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644973", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644974.json b/public/organe/PO644974.json new file mode 100644 index 0000000..14ce1ea --- /dev/null +++ b/public/organe/PO644974.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644974", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644975.json b/public/organe/PO644975.json new file mode 100644 index 0000000..269da78 --- /dev/null +++ b/public/organe/PO644975.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644975", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO644976.json b/public/organe/PO644976.json new file mode 100644 index 0000000..8a55a18 --- /dev/null +++ b/public/organe/PO644976.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644976", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO644977.json b/public/organe/PO644977.json new file mode 100644 index 0000000..f15e4c7 --- /dev/null +++ b/public/organe/PO644977.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644977", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO644978.json b/public/organe/PO644978.json new file mode 100644 index 0000000..0e4d0d8 --- /dev/null +++ b/public/organe/PO644978.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644978", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO644979.json b/public/organe/PO644979.json new file mode 100644 index 0000000..543d6e4 --- /dev/null +++ b/public/organe/PO644979.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644979", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO644980.json b/public/organe/PO644980.json new file mode 100644 index 0000000..03c6b8e --- /dev/null +++ b/public/organe/PO644980.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644980", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO644981.json b/public/organe/PO644981.json new file mode 100644 index 0000000..e7ca4c7 --- /dev/null +++ b/public/organe/PO644981.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644981", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO644982.json b/public/organe/PO644982.json new file mode 100644 index 0000000..7c0cbb6 --- /dev/null +++ b/public/organe/PO644982.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644982", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO644983.json b/public/organe/PO644983.json new file mode 100644 index 0000000..44b3b39 --- /dev/null +++ b/public/organe/PO644983.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644983", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO644984.json b/public/organe/PO644984.json new file mode 100644 index 0000000..b797c70 --- /dev/null +++ b/public/organe/PO644984.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644984", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO644985.json b/public/organe/PO644985.json new file mode 100644 index 0000000..ba0cd5f --- /dev/null +++ b/public/organe/PO644985.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644985", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO644986.json b/public/organe/PO644986.json new file mode 100644 index 0000000..5d856a2 --- /dev/null +++ b/public/organe/PO644986.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644986", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO644987.json b/public/organe/PO644987.json new file mode 100644 index 0000000..4aa8167 --- /dev/null +++ b/public/organe/PO644987.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644987", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO644988.json b/public/organe/PO644988.json new file mode 100644 index 0000000..84871b3 --- /dev/null +++ b/public/organe/PO644988.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644988", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO644989.json b/public/organe/PO644989.json new file mode 100644 index 0000000..3cd2e3e --- /dev/null +++ b/public/organe/PO644989.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644989", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO644990.json b/public/organe/PO644990.json new file mode 100644 index 0000000..d4f4915 --- /dev/null +++ b/public/organe/PO644990.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644990", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO644991.json b/public/organe/PO644991.json new file mode 100644 index 0000000..55c3b29 --- /dev/null +++ b/public/organe/PO644991.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644991", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO644992.json b/public/organe/PO644992.json new file mode 100644 index 0000000..a3ec1a7 --- /dev/null +++ b/public/organe/PO644992.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644992", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "O", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO644993.json b/public/organe/PO644993.json new file mode 100644 index 0000000..1b8b9ec --- /dev/null +++ b/public/organe/PO644993.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644993", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO644994.json b/public/organe/PO644994.json new file mode 100644 index 0000000..b8070c1 --- /dev/null +++ b/public/organe/PO644994.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644994", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO644995.json b/public/organe/PO644995.json new file mode 100644 index 0000000..0f65cde --- /dev/null +++ b/public/organe/PO644995.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644995", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO644996.json b/public/organe/PO644996.json new file mode 100644 index 0000000..a610ed8 --- /dev/null +++ b/public/organe/PO644996.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644996", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO644997.json b/public/organe/PO644997.json new file mode 100644 index 0000000..df4b254 --- /dev/null +++ b/public/organe/PO644997.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644997", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO644998.json b/public/organe/PO644998.json new file mode 100644 index 0000000..2abb292 --- /dev/null +++ b/public/organe/PO644998.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644998", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO644999.json b/public/organe/PO644999.json new file mode 100644 index 0000000..909aff8 --- /dev/null +++ b/public/organe/PO644999.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO644999", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO645000.json b/public/organe/PO645000.json new file mode 100644 index 0000000..8f1b0de --- /dev/null +++ b/public/organe/PO645000.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645000", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO645001.json b/public/organe/PO645001.json new file mode 100644 index 0000000..43647be --- /dev/null +++ b/public/organe/PO645001.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645001", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO645002.json b/public/organe/PO645002.json new file mode 100644 index 0000000..a71bf3d --- /dev/null +++ b/public/organe/PO645002.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645002", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO645003.json b/public/organe/PO645003.json new file mode 100644 index 0000000..809c650 --- /dev/null +++ b/public/organe/PO645003.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645003", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO645004.json b/public/organe/PO645004.json new file mode 100644 index 0000000..12f3e9b --- /dev/null +++ b/public/organe/PO645004.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645004", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO645005.json b/public/organe/PO645005.json new file mode 100644 index 0000000..a909017 --- /dev/null +++ b/public/organe/PO645005.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645005", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO645006.json b/public/organe/PO645006.json new file mode 100644 index 0000000..e8f87ab --- /dev/null +++ b/public/organe/PO645006.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645006", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO645007.json b/public/organe/PO645007.json new file mode 100644 index 0000000..da4b0be --- /dev/null +++ b/public/organe/PO645007.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645007", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO645008.json b/public/organe/PO645008.json new file mode 100644 index 0000000..af5128b --- /dev/null +++ b/public/organe/PO645008.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645008", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO645009.json b/public/organe/PO645009.json new file mode 100644 index 0000000..f768c31 --- /dev/null +++ b/public/organe/PO645009.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645009", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO645010.json b/public/organe/PO645010.json new file mode 100644 index 0000000..5c0377d --- /dev/null +++ b/public/organe/PO645010.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645010", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO645011.json b/public/organe/PO645011.json new file mode 100644 index 0000000..3675a43 --- /dev/null +++ b/public/organe/PO645011.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645011", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO645012.json b/public/organe/PO645012.json new file mode 100644 index 0000000..535f7cb --- /dev/null +++ b/public/organe/PO645012.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645012", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO645013.json b/public/organe/PO645013.json new file mode 100644 index 0000000..9b0f38b --- /dev/null +++ b/public/organe/PO645013.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645013", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO645014.json b/public/organe/PO645014.json new file mode 100644 index 0000000..d93fa3f --- /dev/null +++ b/public/organe/PO645014.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645014", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO645015.json b/public/organe/PO645015.json new file mode 100644 index 0000000..451fdd7 --- /dev/null +++ b/public/organe/PO645015.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645015", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO645016.json b/public/organe/PO645016.json new file mode 100644 index 0000000..a133842 --- /dev/null +++ b/public/organe/PO645016.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645016", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO645017.json b/public/organe/PO645017.json new file mode 100644 index 0000000..f4d0efc --- /dev/null +++ b/public/organe/PO645017.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645017", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "O", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO645018.json b/public/organe/PO645018.json new file mode 100644 index 0000000..1ab9c06 --- /dev/null +++ b/public/organe/PO645018.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645018", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Barth\u00e9l\u00e9my et Saint-Martin", "libelleEdition": "de la circonscription", "libelleAbrege": "977 Saint-Barth\u00e9lemy et Saint-Martin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Barth\u00e9lemy et Saint-Martin"}, "departement": {"codeNatureDep": "T", "code": "977", "libelle": "Saint-Barth\u00e9lemy et Saint-Martin"}}}} \ No newline at end of file diff --git a/public/organe/PO645019.json b/public/organe/PO645019.json new file mode 100644 index 0000000..5a58ca4 --- /dev/null +++ b/public/organe/PO645019.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645019", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO645020.json b/public/organe/PO645020.json new file mode 100644 index 0000000..65991f2 --- /dev/null +++ b/public/organe/PO645020.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645020", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "1", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645021.json b/public/organe/PO645021.json new file mode 100644 index 0000000..2667e5a --- /dev/null +++ b/public/organe/PO645021.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645021", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "2", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645022.json b/public/organe/PO645022.json new file mode 100644 index 0000000..bc0a328 --- /dev/null +++ b/public/organe/PO645022.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645022", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "3", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645023.json b/public/organe/PO645023.json new file mode 100644 index 0000000..8ab46ba --- /dev/null +++ b/public/organe/PO645023.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645023", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "4", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645024.json b/public/organe/PO645024.json new file mode 100644 index 0000000..791f735 --- /dev/null +++ b/public/organe/PO645024.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645024", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "5", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645025.json b/public/organe/PO645025.json new file mode 100644 index 0000000..3a0377e --- /dev/null +++ b/public/organe/PO645025.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645025", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "6", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645026.json b/public/organe/PO645026.json new file mode 100644 index 0000000..06ca1ef --- /dev/null +++ b/public/organe/PO645026.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645026", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "7", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645027.json b/public/organe/PO645027.json new file mode 100644 index 0000000..a26d4ae --- /dev/null +++ b/public/organe/PO645027.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645027", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "8", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645028.json b/public/organe/PO645028.json new file mode 100644 index 0000000..95378a3 --- /dev/null +++ b/public/organe/PO645028.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645028", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "9", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645029.json b/public/organe/PO645029.json new file mode 100644 index 0000000..1ceab06 --- /dev/null +++ b/public/organe/PO645029.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645029", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "10", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO645030.json b/public/organe/PO645030.json new file mode 100644 index 0000000..44a0b5e --- /dev/null +++ b/public/organe/PO645030.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO645030", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2012-06-20", "dateAgrement": null, "dateFin": "2017-06-20"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "14", "numero": "11", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO675659.json b/public/organe/PO675659.json new file mode 100644 index 0000000..e7c0cdc --- /dev/null +++ b/public/organe/PO675659.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO675659", "codeType": "DELEG", "libelle": "D\u00e9l\u00e9gation aux outre-mer", "libelleEdition": "de la d\u00e9l\u00e9gation aux outre-mer", "libelleAbrege": "D\u00e9l\u00e9gation aux outre-mer", "libelleAbrev": "OM", "viMoDe": {"dateDebut": "2012-07-17", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": "M. Pierre Jouin", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO677769.json b/public/organe/PO677769.json new file mode 100644 index 0000000..5636e98 --- /dev/null +++ b/public/organe/PO677769.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO677769", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration du Centre national du cin\u00e9ma et de l'image anim\u00e9e", "libelleEdition": "du conseil d'administration du Centre national du cin\u00e9ma et de l'image anim\u00e9e", "libelleAbrege": "CNC et image anim\u00e9e", "libelleAbrev": "300", "viMoDe": {"dateDebut": "2011-05-17", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 112-1 du code du cin\u00e9ma et de l'image anim\u00e9e", "siteInternet": "http://cnc.fr/web/fr;jsessionid=E86B1EDA242977C26CF620B5904B2220.liferay", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO678097.json b/public/organe/PO678097.json new file mode 100644 index 0000000..b1755c0 --- /dev/null +++ b/public/organe/PO678097.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO678097", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Agence nationale de s\u00e9curit\u00e9 du m\u00e9dicament et des produits de sant\u00e9", "libelleEdition": "du conseil d'administration de l'Agence nationale de s\u00e9curit\u00e9 du m\u00e9dicament et des produits de sant\u00e9", "libelleAbrege": "S\u00e9curit\u00e9 du m\u00e9dicament", "libelleAbrev": "299", "viMoDe": {"dateDebut": "2012-04-27", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 5322-1 du code de la sant\u00e9 publique", "siteInternet": "http://ansm.sante.fr/L-ANSM/Gouvernance/Conseil-d-administration/(offset)/1", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO678275.json b/public/organe/PO678275.json new file mode 100644 index 0000000..e43e04e --- /dev/null +++ b/public/organe/PO678275.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO678275", "codeType": "ORGEXTPARL", "libelle": "Haut Conseil du financement de la protection sociale", "libelleEdition": "du Haut Conseil du financement de la protection sociale", "libelleAbrege": "Protection sociale", "libelleAbrev": "296", "viMoDe": {"dateDebut": "2012-01-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 114-1 A du code de la s\u00e9curit\u00e9 sociale", "siteInternet": "http://www.securite-sociale.fr/-Haut-conseil-de-financement-de-la-protection-sociale-", "nombreReunionsAnnuelles": "13"}} \ No newline at end of file diff --git a/public/organe/PO681380.json b/public/organe/PO681380.json new file mode 100644 index 0000000..dbcd3b8 --- /dev/null +++ b/public/organe/PO681380.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO681380", "codeType": "ORGEXTPARL", "libelle": "Conseil national des sapeurs-pompiers volontaires", "libelleEdition": "du Conseil national des sapeurs-pompiers volontaires", "libelleAbrege": "Sapeurs-pompiers", "libelleAbrev": "297", "viMoDe": {"dateDebut": "2012-01-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article\u00a0L.\u00a0723-21 du code de la s\u00e9curit\u00e9 int\u00e9rieure", "siteInternet": "https://www.interieur.gouv.fr/Le-ministere/Securite-civile/Documentation-technique/Les-sapeurs-pompiers/Le-volontariat/Le-Conseil-national-des-sapeurs-pompiers-volontaires", "nombreReunionsAnnuelles": "3"}} \ No newline at end of file diff --git a/public/organe/PO683289.json b/public/organe/PO683289.json new file mode 100644 index 0000000..4654e61 --- /dev/null +++ b/public/organe/PO683289.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO683289", "codeType": "ORGEXTPARL", "libelle": "Haut comit\u00e9 de la qualit\u00e9 de service dans les transports", "libelleEdition": "du Haut comit\u00e9 de la qualit\u00e9 de service dans les transports", "libelleAbrege": "Qualit\u00e9 de service dans les transports", "libelleAbrev": "295", "viMoDe": {"dateDebut": "2012-02-14", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 1111-7 du code des transports", "siteInternet": "http://www.qualitetransports.gouv.fr/le-haut-comite-de-la-qualite-de-service-dans-les-r9.html", "nombreReunionsAnnuelles": "4"}} \ No newline at end of file diff --git a/public/organe/PO684926.json b/public/organe/PO684926.json new file mode 100644 index 0000000..557dccc --- /dev/null +++ b/public/organe/PO684926.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO684926", "codeType": "PARPOL", "libelle": "Parti communiste fran\u00e7ais", "libelleEdition": "Parti communiste fran\u00e7ais", "libelleAbrege": "Parti communiste fran\u00e7ais", "libelleAbrev": "PCF", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO684932.json b/public/organe/PO684932.json new file mode 100644 index 0000000..3221da5 --- /dev/null +++ b/public/organe/PO684932.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO684932", "codeType": "PARPOL", "libelle": "Parti socialiste", "libelleEdition": "Parti socialiste", "libelleAbrege": "Parti socialiste", "libelleAbrev": "PS", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO684934.json b/public/organe/PO684934.json new file mode 100644 index 0000000..cf05871 --- /dev/null +++ b/public/organe/PO684934.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO684934", "codeType": "PARPOL", "libelle": "Parti radical de gauche", "libelleEdition": "Parti radical de gauche", "libelleAbrege": "Parti radical de gauche", "libelleAbrev": "PRG", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO684936.json b/public/organe/PO684936.json new file mode 100644 index 0000000..5754190 --- /dev/null +++ b/public/organe/PO684936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO684936", "codeType": "PARPOL", "libelle": "Europe \u00c9cologie Les Verts", "libelleEdition": "Europe \u00c9cologie Les Verts", "libelleAbrege": "Europe \u00c9cologie Les Verts", "libelleAbrev": "EELV", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO685893.json b/public/organe/PO685893.json new file mode 100644 index 0000000..c36e1cc --- /dev/null +++ b/public/organe/PO685893.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO685893", "codeType": "PARPOL", "libelle": "Parti progressiste martiniquais", "libelleEdition": "Parti progressiste martiniquais", "libelleAbrege": "Parti progressiste martiniquais", "libelleAbrev": "PPM", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO686029.json b/public/organe/PO686029.json new file mode 100644 index 0000000..694f2df --- /dev/null +++ b/public/organe/PO686029.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO686029", "codeType": "PARPOL", "libelle": "Pour la R\u00e9union", "libelleEdition": "Pour la R\u00e9union", "libelleAbrege": "Pour la R\u00e9union", "libelleAbrev": "PLR", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO687635.json b/public/organe/PO687635.json new file mode 100644 index 0000000..97bf6f9 --- /dev/null +++ b/public/organe/PO687635.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO687635", "codeType": "ORGEXTPARL", "libelle": "Haut Conseil \u00e0 l'\u00e9galit\u00e9 entre les femmes et les hommes", "libelleEdition": "du Haut Conseil \u00e0 l'\u00e9galit\u00e9 entre les femmes et les hommes", "libelleAbrege": "Egalit\u00e9 femmes hommes", "libelleAbrev": "303", "viMoDe": {"dateDebut": "2012-01-03", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article\u00a09-1 de la loi\u00a0n\u00b0\u00a02008-496 du 27\u00a0mai\u00a02008", "siteInternet": "http://www.haut-conseil-egalite.gouv.fr/", "nombreReunionsAnnuelles": "54"}} \ No newline at end of file diff --git a/public/organe/PO692699.json b/public/organe/PO692699.json new file mode 100644 index 0000000..52561c5 --- /dev/null +++ b/public/organe/PO692699.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO692699", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 national d'orientation de la soci\u00e9t\u00e9 anonyme Bpifrance", "libelleEdition": "du comit\u00e9 national d'orientation de la soci\u00e9t\u00e9 anonyme Bpifrance", "libelleAbrege": "BPI-Groupe", "libelleAbrev": "306", "viMoDe": {"dateDebut": "2012-12-31", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 7-2 de l'ordonnance n\u00b0 2005-722 du 29 juin 2005", "siteInternet": "http://www.bpi-group.com/fr/qui-sommes-nous/notre-equipe.html", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO693055.json b/public/organe/PO693055.json new file mode 100644 index 0000000..f40b3cb --- /dev/null +++ b/public/organe/PO693055.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO693055", "codeType": "ORGEXTPARL", "libelle": "Conseil national du num\u00e9rique (formation \u00e9largie)", "libelleEdition": "du Conseil national du num\u00e9rique (formation \u00e9largie)", "libelleAbrege": "Num\u00e9rique", "libelleAbrev": "304", "viMoDe": {"dateDebut": "2012-12-13", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 33 de la loi n\u00b0 2018-699 du 3 ao\u00fbt 2018", "siteInternet": "https://cnnumerique.fr/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO695379.json b/public/organe/PO695379.json new file mode 100644 index 0000000..87e2918 --- /dev/null +++ b/public/organe/PO695379.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO695379", "codeType": "ORGEXTPARL", "libelle": "Conseil consultatif des Terres australes et antarctiques fran\u00e7aises", "libelleEdition": "du Conseil consultatif des Terres australes et antarctiques fran\u00e7aises", "libelleAbrege": "TAAF", "libelleAbrev": "310", "viMoDe": {"dateDebut": "2013-06-04", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article\u00a03 de la loi\u00a0n\u00b0\u00a055-1052 du 6\u00a0ao\u00fbt\u00a01955", "siteInternet": "http://www.taaf.fr/Le-conseil-consultatif", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO696474.json b/public/organe/PO696474.json new file mode 100644 index 0000000..7d0c130 --- /dev/null +++ b/public/organe/PO696474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO696474", "codeType": "ORGEXTPARL", "libelle": "Conseil national des professions du spectacle", "libelleEdition": "du Conseil national des professions du spectacle", "libelleAbrege": "Professions du spectacle", "libelleAbrev": "309", "viMoDe": {"dateDebut": "2013-04-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article XXX de la loi visant \u00e0 garantir la pr\u00e9sence des parlementaires dans certains organismes ext\u00e9rieurs au Parlement et \u00e0 simplifier les modalit\u00e9s de leur nomination", "siteInternet": null, "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO696836.json b/public/organe/PO696836.json new file mode 100644 index 0000000..ad3c035 --- /dev/null +++ b/public/organe/PO696836.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO696836", "codeType": "ORGEXTPARL", "libelle": "Conseil national de la transition \u00e9cologique", "libelleEdition": "du Conseil national de la transition \u00e9cologique", "libelleAbrege": "Transition \u00e9cologique", "libelleAbrev": "314", "viMoDe": {"dateDebut": "2013-08-16", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 133-2 du code de l'environnement", "siteInternet": "https://www.ecologique-solidaire.gouv.fr/cnte", "nombreReunionsAnnuelles": "9"}} \ No newline at end of file diff --git a/public/organe/PO697215.json b/public/organe/PO697215.json new file mode 100644 index 0000000..9c495ae --- /dev/null +++ b/public/organe/PO697215.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO697215", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur des programmes", "libelleEdition": "du Conseil sup\u00e9rieur des programmes", "libelleAbrege": "Programmes", "libelleAbrev": "313", "viMoDe": {"dateDebut": "2013-07-08", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 231-14 du code de l'\u00e9ducation", "siteInternet": "http://www.education.gouv.fr/pid31771/le-conseil-superieur-des-programmes.html", "nombreReunionsAnnuelles": "23"}} \ No newline at end of file diff --git a/public/organe/PO699638.json b/public/organe/PO699638.json new file mode 100644 index 0000000..0754cf7 --- /dev/null +++ b/public/organe/PO699638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO699638", "codeType": "ORGEXTPARL", "libelle": "Commission pour la modernisation de la diffusion audiovisuelle", "libelleEdition": "de la Commission pour la modernisation de la diffusion audiovisuelle", "libelleAbrege": "Modernisation de la diffusion audiovisuelle", "libelleAbrev": "317", "viMoDe": {"dateDebut": "2014-01-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 21 de la loi n\u00b0 86-1067 du 30 septembre 1986", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO702822.json b/public/organe/PO702822.json new file mode 100644 index 0000000..7e24502 --- /dev/null +++ b/public/organe/PO702822.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO702822", "codeType": "ORGEXTPARL", "libelle": "Conseil national d'\u00e9valuation des normes", "libelleEdition": "du Conseil national d'\u00e9valuation des normes", "libelleAbrege": "Evaluation des normes", "libelleAbrev": "320", "viMoDe": {"dateDebut": "2013-10-17", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 1212-1 du code g\u00e9n\u00e9ral des collectivit\u00e9s territoriales", "siteInternet": "http://www.cnen.dgcl.interieur.gouv.fr/", "nombreReunionsAnnuelles": "19"}} \ No newline at end of file diff --git a/public/organe/PO702841.json b/public/organe/PO702841.json new file mode 100644 index 0000000..8653fd3 --- /dev/null +++ b/public/organe/PO702841.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO702841", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Agence de financement des infrastructures de transport de France", "libelleEdition": "du conseil d'administration de l'Agence de financement des infrastructures de transport de France", "libelleAbrege": "Agence financement transport de France", "libelleAbrev": "323", "viMoDe": {"dateDebut": "2004-11-26", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L.\u00a01512-19 du code des transports", "siteInternet": "http://www.afitf.net/", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO702883.json b/public/organe/PO702883.json new file mode 100644 index 0000000..0a3ed47 --- /dev/null +++ b/public/organe/PO702883.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO702883", "codeType": "GOUVERNEMENT", "libelle": "Gouvernement", "libelleEdition": "du Gouvernement", "libelleAbrege": "VALLS 2", "libelleAbrev": "GVT", "viMoDe": {"dateDebut": "2014-08-26", "dateAgrement": null, "dateFin": "2016-12-06"}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO704856.json b/public/organe/PO704856.json new file mode 100644 index 0000000..b9d8d14 --- /dev/null +++ b/public/organe/PO704856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO704856", "codeType": "DELEGSENAT", "libelle": "D\u00e9l\u00e9gation s\u00e9natoriale aux entreprises", "libelleEdition": null, "libelleAbrege": "D\u00e9l\u00e9gation s\u00e9natoriale aux entreprises", "libelleAbrev": "ENTRE", "viMoDe": {"dateDebut": "2014-11-26", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO707219.json b/public/organe/PO707219.json new file mode 100644 index 0000000..d6e1d67 --- /dev/null +++ b/public/organe/PO707219.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO707219", "codeType": "ORGEXTPARL", "libelle": "Expertise France", "libelleEdition": null, "libelleAbrege": "AFETI", "libelleAbrev": "328", "viMoDe": {"dateDebut": "2014-12-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 12 de la loi n\u00b0 2010-873 du 27 juillet 2010", "siteInternet": "http://www.europe-international-et-formation.eu/union-europeenne-formation/actualites/agence-francaise-d-expertise.html", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO707859.json b/public/organe/PO707859.json new file mode 100644 index 0000000..12e155b --- /dev/null +++ b/public/organe/PO707859.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO707859", "codeType": "CIRCONSCRIPTION", "libelle": "Circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1956-01-19", "dateAgrement": null, "dateFin": "1958-12-08"}, "organeParent": null, "chambre": null, "regime": "4\u00e8me R\u00e9publique", "legislature": null, "numero": null, "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO707861.json b/public/organe/PO707861.json new file mode 100644 index 0000000..c9a7318 --- /dev/null +++ b/public/organe/PO707861.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO707861", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO709158.json b/public/organe/PO709158.json new file mode 100644 index 0000000..8e59cc1 --- /dev/null +++ b/public/organe/PO709158.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709158", "codeType": "ORGEXTPARL", "libelle": "Conseil national du d\u00e9veloppement et de la solidarit\u00e9 internationale", "libelleEdition": "du Conseil national du d\u00e9veloppement et de la solidarit\u00e9 internationale", "libelleAbrege": "D\u00e9veloppement et solidarit\u00e9", "libelleAbrev": "318", "viMoDe": {"dateDebut": "2013-12-11", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 6-1 de la loi n\u00b0 2014-773 du 7 juillet 2014", "siteInternet": "https://www.diplomatie.gouv.fr/fr/politique-etrangere-de-la-france/societe-civile-et-volontariat/le-conseil-national-pour-le-developpement-et-la-solidarite-internationale-cndsi/", "nombreReunionsAnnuelles": "3"}} \ No newline at end of file diff --git a/public/organe/PO709162.json b/public/organe/PO709162.json new file mode 100644 index 0000000..32142c8 --- /dev/null +++ b/public/organe/PO709162.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709162", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 national d'orientation et de suivi du fods de soutien mentionn\u00e9 \u00e0 l'article 92 de la loi du 29 d\u00e9cembre 2013 de finances pour 2014", "libelleEdition": "du Comit\u00e9 national d'orientation et de suivi du fods de soutien mentionn\u00e9 \u00e0 l'article 92 de la loi du 29 d\u00e9cembre 2013 de finances pour 2014", "libelleAbrege": "Fonds de soutien", "libelleAbrev": "322", "viMoDe": {"dateDebut": "2014-04-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 92 de la loi n\u00b0 2013-1278 du 29 d\u00e9cembre 2013 de finances pour 2014", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO709174.json b/public/organe/PO709174.json new file mode 100644 index 0000000..c3a3e16 --- /dev/null +++ b/public/organe/PO709174.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709174", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 charg\u00e9 d'assister la plate-forme nationale des interceptions judiciaires", "libelleEdition": "du Comit\u00e9 charg\u00e9 d'assister la plate-forme nationale des interceptions judiciaires", "libelleAbrege": "Comit\u00e9 code proc\u00e9dure p\u00e9nale", "libelleAbrev": "326", "viMoDe": {"dateDebut": "2014-10-09", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 230-45 du code de proc\u00e9dure p\u00e9nale", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO709179.json b/public/organe/PO709179.json new file mode 100644 index 0000000..b771a45 --- /dev/null +++ b/public/organe/PO709179.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709179", "codeType": "ORGEXTPARL", "libelle": "Agence Business France", "libelleEdition": "de l'Agence Business France", "libelleAbrege": "Business France", "libelleAbrev": "329", "viMoDe": {"dateDebut": "2014-12-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Articles 50 de la loi n\u00b0 2003-721 du 1 ao\u00fbt 2003", "siteInternet": "https://www.businessfrance.fr/qui-sommes-nous-gouvernance", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO709182.json b/public/organe/PO709182.json new file mode 100644 index 0000000..2f1631b --- /dev/null +++ b/public/organe/PO709182.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709182", "codeType": "ORGEXTPARL", "libelle": "Centre national du livre", "libelleEdition": "du Centre national du livre", "libelleAbrege": "Centre national du livre", "libelleAbrev": "330", "viMoDe": {"dateDebut": "1946-10-11", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "Assembl\u00e9es nationales constituantes", "legislature": null, "regimeJuridique": "Article 3 de la loi n\u00b0\u00a046-2196 du 11\u00a0octobre 1946", "siteInternet": "http://www.centrenationaldulivre.fr/fr/le_cnl/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO709185.json b/public/organe/PO709185.json new file mode 100644 index 0000000..95658fa --- /dev/null +++ b/public/organe/PO709185.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709185", "codeType": "ORGEXTPARL", "libelle": "Haut conseil de l'\u00e9valuation de la recherche et de l'enseignement sup\u00e9rieur", "libelleEdition": "du Haut conseil de l'\u00e9valuation de la recherche et de l'enseignement sup\u00e9rieur", "libelleAbrege": "\u00c9valuation recherche", "libelleAbrev": "331", "viMoDe": {"dateDebut": "2014-11-14", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 114-3-3 du code de la recherche", "siteInternet": "http://www.hceres.fr/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO709188.json b/public/organe/PO709188.json new file mode 100644 index 0000000..a62aaf9 --- /dev/null +++ b/public/organe/PO709188.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709188", "codeType": "ORGEXTPARL", "libelle": "Conseil national des villes", "libelleEdition": "du Conseil national des villes", "libelleAbrege": "Conseil national des villes", "libelleAbrev": "333", "viMoDe": {"dateDebut": "2015-01-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 2 bis de la loi n\u00b0 2014-173 du 21 f\u00e9vrier 2014", "siteInternet": "http://www.cget.gouv.fr/territoires/quartiers-de-la-politique-de-la-ville/conseil-national-des-villes", "nombreReunionsAnnuelles": "10"}} \ No newline at end of file diff --git a/public/organe/PO709190.json b/public/organe/PO709190.json new file mode 100644 index 0000000..66c8e64 --- /dev/null +++ b/public/organe/PO709190.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709190", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur de la construction et de l'efficacit\u00e9 \u00e9nerg\u00e9tique", "libelleEdition": "du Conseil sup\u00e9rieur de la construction et de l'efficacit\u00e9 \u00e9nerg\u00e9tique", "libelleAbrege": "Construction et efficacit\u00e9 \u00e9nerg\u00e9tique", "libelleAbrev": "334", "viMoDe": {"dateDebut": "2015-03-23", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Articles L. 142-5 et D. 142-16 du code de la construction et de l'habitation", "siteInternet": "http://www.cohesion-territoires.gouv.fr/conseil-superieur-de-la-construction-et-de-l-efficacite-energetique-cscee", "nombreReunionsAnnuelles": "11"}} \ No newline at end of file diff --git a/public/organe/PO709193.json b/public/organe/PO709193.json new file mode 100644 index 0000000..95e526b --- /dev/null +++ b/public/organe/PO709193.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709193", "codeType": "ORGEXTPARL", "libelle": "Conseil national du syndrome de l'immunod\u00e9ficience acquise (SIDA) et des h\u00e9patites virales chroniques", "libelleEdition": "du Conseil national du syndrome de l'immunod\u00e9ficience acquise et des h\u00e9patites virales chroniques", "libelleAbrege": "SIDA", "libelleAbrev": "335", "viMoDe": {"dateDebut": "2015-02-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 3121-3 du code de la sant\u00e9 publique", "siteInternet": "https://cns.sante.fr/", "nombreReunionsAnnuelles": "52"}} \ No newline at end of file diff --git a/public/organe/PO709195.json b/public/organe/PO709195.json new file mode 100644 index 0000000..5ee2e97 --- /dev/null +++ b/public/organe/PO709195.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709195", "codeType": "ORGEXTPARL", "libelle": "Haut comit\u00e9 du syst\u00e8me de transport ferroviaire", "libelleEdition": "du Haut comit\u00e9 du syst\u00e8me de transport ferroviaire", "libelleAbrege": "Transport ferroviaire", "libelleAbrev": "336", "viMoDe": {"dateDebut": "2014-08-04", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 2100-3 du code des transports", "siteInternet": "http://www.assorail.fr/reforme-ferroviaire/les-37-membres-du-haut-comite-du-systeme-de-transport-ferroviaire", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO709198.json b/public/organe/PO709198.json new file mode 100644 index 0000000..2490e34 --- /dev/null +++ b/public/organe/PO709198.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709198", "codeType": "ORGEXTPARL", "libelle": "Commission nationale consultative des gens du voyage", "libelleEdition": "de la Commission nationale consultative des gens du voyage", "libelleAbrege": "Gens du voyage", "libelleAbrev": "337", "viMoDe": {"dateDebut": "2015-05-20", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 10-1 de la loi n\u00b0\u00a02000-614 du 5\u00a0juillet 2000", "siteInternet": "https://www.gouvernement.fr/commission-nationale-consultative-des-gens-du-voyage-4906", "nombreReunionsAnnuelles": "32"}} \ No newline at end of file diff --git a/public/organe/PO709202.json b/public/organe/PO709202.json new file mode 100644 index 0000000..18c75c2 --- /dev/null +++ b/public/organe/PO709202.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709202", "codeType": "ORGEXTPARL", "libelle": "Commission nationale de la d\u00e9ontologie et des alertes en mati\u00e8re de sant\u00e9 publique et d'environnement", "libelleEdition": "de la Commission nationale de la d\u00e9ontologie et des alertes en mati\u00e8re de sant\u00e9 publique et d'environnement", "libelleAbrege": "D\u00e9ontologie et alertes", "libelleAbrev": "339", "viMoDe": {"dateDebut": "2014-12-26", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 5 de la loi n\u00b0 2013-316 du 16 avril 2013", "siteInternet": null, "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO709204.json b/public/organe/PO709204.json new file mode 100644 index 0000000..e97d987 --- /dev/null +++ b/public/organe/PO709204.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709204", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'\u00e9conomie sociale et solidaire", "libelleEdition": "du Conseil national de l'\u00e9conomie sociale et solidaire", "libelleAbrege": "\u00c9conomie sociale et solidaire", "libelleAbrev": "340", "viMoDe": {"dateDebut": "2015-06-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 4 de la loi n\u00b0 2014-856 du 31 juillet 2014", "siteInternet": "http://www.esspace.fr/csess.html", "nombreReunionsAnnuelles": "64"}} \ No newline at end of file diff --git a/public/organe/PO709206.json b/public/organe/PO709206.json new file mode 100644 index 0000000..57d9542 --- /dev/null +++ b/public/organe/PO709206.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709206", "codeType": "ORGEXTPARL", "libelle": "Conseil sup\u00e9rieur de l'Agence France-Presse", "libelleEdition": "du Conseil sup\u00e9rieur de l'Agence France-Presse", "libelleAbrege": "AFP", "libelleAbrev": "341", "viMoDe": {"dateDebut": "2015-06-23", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 4 de la loi n\u00b0 57-32 du 10 janvier 1957", "siteInternet": "https://www.afp.com/fr/lagence/propos/les-gouvernances", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO709209.json b/public/organe/PO709209.json new file mode 100644 index 0000000..1f99a8c --- /dev/null +++ b/public/organe/PO709209.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO709209", "codeType": "ORGEXTPARL", "libelle": "Commission nationale de contr\u00f4le des techniques de renseignement", "libelleEdition": "de la Commission nationale de contr\u00f4le des techniques de renseignement", "libelleAbrege": "CNCTR", "libelleAbrev": "342", "viMoDe": {"dateDebut": "2015-07-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 831-1 du code de la s\u00e9curit\u00e9 int\u00e9rieure", "siteInternet": "https://www.cnctr.fr/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO710396.json b/public/organe/PO710396.json new file mode 100644 index 0000000..a984b16 --- /dev/null +++ b/public/organe/PO710396.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO710396", "codeType": "PARPOL", "libelle": "Les R\u00e9publicains", "libelleEdition": "Les R\u00e9publicains", "libelleAbrege": "Les R\u00e9publicains", "libelleAbrev": "REP", "viMoDe": {"dateDebut": "2015-12-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO710611.json b/public/organe/PO710611.json new file mode 100644 index 0000000..cbc0cc5 --- /dev/null +++ b/public/organe/PO710611.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO710611", "codeType": "PARPOL", "libelle": "Debout la France", "libelleEdition": "Debout la France", "libelleAbrege": "Debout la France", "libelleAbrev": "DEBOU", "viMoDe": {"dateDebut": "2015-12-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO710729.json b/public/organe/PO710729.json new file mode 100644 index 0000000..2ed4aee --- /dev/null +++ b/public/organe/PO710729.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO710729", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO711082.json b/public/organe/PO711082.json new file mode 100644 index 0000000..dc3a44b --- /dev/null +++ b/public/organe/PO711082.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO711082", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO711084.json b/public/organe/PO711084.json new file mode 100644 index 0000000..d741204 --- /dev/null +++ b/public/organe/PO711084.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO711084", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO711086.json b/public/organe/PO711086.json new file mode 100644 index 0000000..554f465 --- /dev/null +++ b/public/organe/PO711086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO711086", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO711088.json b/public/organe/PO711088.json new file mode 100644 index 0000000..e1cb019 --- /dev/null +++ b/public/organe/PO711088.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO711088", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO711487.json b/public/organe/PO711487.json new file mode 100644 index 0000000..19eda74 --- /dev/null +++ b/public/organe/PO711487.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO711487", "codeType": "ORGEXTPARL", "libelle": "Observatoire des espaces naturels, agricoles et forestiers", "libelleEdition": "de l'Observatoire des espaces naturels, agricoles et forestiers", "libelleAbrege": "Observatoire espaces naturels", "libelleAbrev": "344", "viMoDe": {"dateDebut": "2015-06-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 112-1 du code rural et de la p\u00eache maritime", "siteInternet": "http://agriculture.gouv.fr/observatoire-des-espaces-naturels-agricoles-et-forestiers-oenaf", "nombreReunionsAnnuelles": "2"}} \ No newline at end of file diff --git a/public/organe/PO711496.json b/public/organe/PO711496.json new file mode 100644 index 0000000..145e134 --- /dev/null +++ b/public/organe/PO711496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO711496", "codeType": "ORGEXTPARL", "libelle": "Commission de concertation du commerce", "libelleEdition": "de la Commission de concertation du commerce", "libelleAbrege": "Concertation du commerce", "libelleAbrev": "345", "viMoDe": {"dateDebut": "2015-10-19", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 60-1 de la loi n\u00b0 2005-882 du 2 ao\u00fbt 2005", "siteInternet": null, "nombreReunionsAnnuelles": "2"}} \ No newline at end of file diff --git a/public/organe/PO714909.json b/public/organe/PO714909.json new file mode 100644 index 0000000..69fd053 --- /dev/null +++ b/public/organe/PO714909.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO714909", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO714911.json b/public/organe/PO714911.json new file mode 100644 index 0000000..4c17145 --- /dev/null +++ b/public/organe/PO714911.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO714911", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO714913.json b/public/organe/PO714913.json new file mode 100644 index 0000000..7fae59b --- /dev/null +++ b/public/organe/PO714913.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO714913", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO715064.json b/public/organe/PO715064.json new file mode 100644 index 0000000..d4fca97 --- /dev/null +++ b/public/organe/PO715064.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715064", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO715066.json b/public/organe/PO715066.json new file mode 100644 index 0000000..928c752 --- /dev/null +++ b/public/organe/PO715066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715066", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO715068.json b/public/organe/PO715068.json new file mode 100644 index 0000000..6fa5e1b --- /dev/null +++ b/public/organe/PO715068.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715068", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": "1962-10-04"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "1", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO715070.json b/public/organe/PO715070.json new file mode 100644 index 0000000..c625994 --- /dev/null +++ b/public/organe/PO715070.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715070", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO715072.json b/public/organe/PO715072.json new file mode 100644 index 0000000..bbb442e --- /dev/null +++ b/public/organe/PO715072.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715072", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO715074.json b/public/organe/PO715074.json new file mode 100644 index 0000000..5b0ab7e --- /dev/null +++ b/public/organe/PO715074.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715074", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO715076.json b/public/organe/PO715076.json new file mode 100644 index 0000000..6ab5cd4 --- /dev/null +++ b/public/organe/PO715076.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715076", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO715078.json b/public/organe/PO715078.json new file mode 100644 index 0000000..50c0f9c --- /dev/null +++ b/public/organe/PO715078.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715078", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO715080.json b/public/organe/PO715080.json new file mode 100644 index 0000000..3099842 --- /dev/null +++ b/public/organe/PO715080.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715080", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO715082.json b/public/organe/PO715082.json new file mode 100644 index 0000000..5208332 --- /dev/null +++ b/public/organe/PO715082.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715082", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO715084.json b/public/organe/PO715084.json new file mode 100644 index 0000000..80d2e2c --- /dev/null +++ b/public/organe/PO715084.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715084", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO715086.json b/public/organe/PO715086.json new file mode 100644 index 0000000..cd29ed2 --- /dev/null +++ b/public/organe/PO715086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715086", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO715088.json b/public/organe/PO715088.json new file mode 100644 index 0000000..69b28a2 --- /dev/null +++ b/public/organe/PO715088.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715088", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO715090.json b/public/organe/PO715090.json new file mode 100644 index 0000000..64779f5 --- /dev/null +++ b/public/organe/PO715090.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715090", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO715092.json b/public/organe/PO715092.json new file mode 100644 index 0000000..a748a28 --- /dev/null +++ b/public/organe/PO715092.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715092", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO715094.json b/public/organe/PO715094.json new file mode 100644 index 0000000..58b58d8 --- /dev/null +++ b/public/organe/PO715094.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715094", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO715096.json b/public/organe/PO715096.json new file mode 100644 index 0000000..118b2bd --- /dev/null +++ b/public/organe/PO715096.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715096", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO715098.json b/public/organe/PO715098.json new file mode 100644 index 0000000..06d1e49 --- /dev/null +++ b/public/organe/PO715098.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715098", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO715100.json b/public/organe/PO715100.json new file mode 100644 index 0000000..e461eab --- /dev/null +++ b/public/organe/PO715100.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715100", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO715102.json b/public/organe/PO715102.json new file mode 100644 index 0000000..4eb3e03 --- /dev/null +++ b/public/organe/PO715102.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715102", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1962-12-06", "dateAgrement": null, "dateFin": "1967-04-02"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "2", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO715104.json b/public/organe/PO715104.json new file mode 100644 index 0000000..68f703b --- /dev/null +++ b/public/organe/PO715104.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715104", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO715106.json b/public/organe/PO715106.json new file mode 100644 index 0000000..17317f4 --- /dev/null +++ b/public/organe/PO715106.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715106", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO715108.json b/public/organe/PO715108.json new file mode 100644 index 0000000..e39cc92 --- /dev/null +++ b/public/organe/PO715108.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715108", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO715110.json b/public/organe/PO715110.json new file mode 100644 index 0000000..1866c01 --- /dev/null +++ b/public/organe/PO715110.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715110", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO715112.json b/public/organe/PO715112.json new file mode 100644 index 0000000..427e450 --- /dev/null +++ b/public/organe/PO715112.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715112", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO715114.json b/public/organe/PO715114.json new file mode 100644 index 0000000..a0488f2 --- /dev/null +++ b/public/organe/PO715114.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715114", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO715116.json b/public/organe/PO715116.json new file mode 100644 index 0000000..af0ac87 --- /dev/null +++ b/public/organe/PO715116.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715116", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO715118.json b/public/organe/PO715118.json new file mode 100644 index 0000000..a2c87da --- /dev/null +++ b/public/organe/PO715118.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715118", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO715120.json b/public/organe/PO715120.json new file mode 100644 index 0000000..2e4ebb9 --- /dev/null +++ b/public/organe/PO715120.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715120", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO715122.json b/public/organe/PO715122.json new file mode 100644 index 0000000..aedd9ea --- /dev/null +++ b/public/organe/PO715122.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715122", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO715124.json b/public/organe/PO715124.json new file mode 100644 index 0000000..c64f210 --- /dev/null +++ b/public/organe/PO715124.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715124", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO715126.json b/public/organe/PO715126.json new file mode 100644 index 0000000..b53e7f4 --- /dev/null +++ b/public/organe/PO715126.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715126", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1967-04-03", "dateAgrement": null, "dateFin": "1968-05-30"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "3", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO715128.json b/public/organe/PO715128.json new file mode 100644 index 0000000..8a964e5 --- /dev/null +++ b/public/organe/PO715128.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715128", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO715130.json b/public/organe/PO715130.json new file mode 100644 index 0000000..4e93b9b --- /dev/null +++ b/public/organe/PO715130.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715130", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO715132.json b/public/organe/PO715132.json new file mode 100644 index 0000000..6764868 --- /dev/null +++ b/public/organe/PO715132.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715132", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1968-07-11", "dateAgrement": null, "dateFin": "1973-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "4", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO715134.json b/public/organe/PO715134.json new file mode 100644 index 0000000..c8962ab --- /dev/null +++ b/public/organe/PO715134.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715134", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO715136.json b/public/organe/PO715136.json new file mode 100644 index 0000000..baa7f52 --- /dev/null +++ b/public/organe/PO715136.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715136", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO715138.json b/public/organe/PO715138.json new file mode 100644 index 0000000..a300b10 --- /dev/null +++ b/public/organe/PO715138.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715138", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO715140.json b/public/organe/PO715140.json new file mode 100644 index 0000000..2d42b57 --- /dev/null +++ b/public/organe/PO715140.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715140", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO715144.json b/public/organe/PO715144.json new file mode 100644 index 0000000..9a8afc5 --- /dev/null +++ b/public/organe/PO715144.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715144", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO715146.json b/public/organe/PO715146.json new file mode 100644 index 0000000..709a995 --- /dev/null +++ b/public/organe/PO715146.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715146", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO715148.json b/public/organe/PO715148.json new file mode 100644 index 0000000..f8b4fa6 --- /dev/null +++ b/public/organe/PO715148.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715148", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO715150.json b/public/organe/PO715150.json new file mode 100644 index 0000000..4b91398 --- /dev/null +++ b/public/organe/PO715150.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO715150", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO716537.json b/public/organe/PO716537.json new file mode 100644 index 0000000..bcddf5e --- /dev/null +++ b/public/organe/PO716537.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO716537", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1973-04-02", "dateAgrement": null, "dateFin": "1978-04-01"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "5", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO716539.json b/public/organe/PO716539.json new file mode 100644 index 0000000..58b61fd --- /dev/null +++ b/public/organe/PO716539.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO716539", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "1978-04-03", "dateAgrement": null, "dateFin": "1981-05-22"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "6", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO716998.json b/public/organe/PO716998.json new file mode 100644 index 0000000..ac8b0a1 --- /dev/null +++ b/public/organe/PO716998.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO716998", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 strat\u00e9gique de l\u2019\u00e9tablissement public soci\u00e9t\u00e9 canal seine-nord europe", "libelleEdition": "du comit\u00e9 strat\u00e9gique de l\u2019\u00e9tablissement public soci\u00e9t\u00e9 canal seine-nord europe", "libelleAbrege": "Comit\u00e9 strat\u00e9gique Canal Seine-Nord Europe", "libelleAbrev": "359", "viMoDe": {"dateDebut": "2016-04-21", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 4 de l'ordonnance n\u00b0 2016-489 du 21 avril 2016", "siteInternet": "https://www.canal-seine-nord-europe.fr/Acteurs/La-Societe-du-Canal-Seine-Nord-Europe", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717136.json b/public/organe/PO717136.json new file mode 100644 index 0000000..7f85d8c --- /dev/null +++ b/public/organe/PO717136.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO717136", "codeType": "PRESREP", "libelle": "Pr\u00e9sidence de la R\u00e9publique : M. Emmanuel Macron", "libelleEdition": "de la R\u00e9publique", "libelleAbrege": "Pr\u00e9sidence de la R\u00e9publique", "libelleAbrev": "PRESI", "viMoDe": {"dateDebut": "2017-05-14", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO717296.json b/public/organe/PO717296.json new file mode 100644 index 0000000..b597ecd --- /dev/null +++ b/public/organe/PO717296.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717296", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de pilotage de l'Observatoire de la formation des prix et des marges des produits alimentaires", "libelleEdition": null, "libelleAbrege": "Observatoire prix et marge produits alimentaires", "libelleAbrev": "363", "viMoDe": {"dateDebut": "2016-12-09", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 682-1 du code rural et de la p\u00eache maritime", "siteInternet": "https://observatoire-prixmarges.franceagrimer.fr/observatoire/Pages/default.aspx", "nombreReunionsAnnuelles": "4"}} \ No newline at end of file diff --git a/public/organe/PO717298.json b/public/organe/PO717298.json new file mode 100644 index 0000000..aaab87f --- /dev/null +++ b/public/organe/PO717298.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717298", "codeType": "ORGEXTPARL", "libelle": "Commission nationale du patrimoine et de l'architecture", "libelleEdition": null, "libelleAbrege": "CNPA", "libelleAbrev": "362", "viMoDe": {"dateDebut": "2016-07-07", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 611-1 du code du patrimoine", "siteInternet": "http://www.culture.gouv.fr/Thematiques/Monuments-historiques-Sites-patrimoniaux-remarquables/Acteurs-et-partenariats/Commissions/Commission-nationale-du-patrimoine-et-de-l-architecture", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO717301.json b/public/organe/PO717301.json new file mode 100644 index 0000000..c666a01 --- /dev/null +++ b/public/organe/PO717301.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717301", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'agence nationale de sant\u00e9 publique", "libelleEdition": null, "libelleAbrege": "ANSP", "libelleAbrev": "361", "viMoDe": {"dateDebut": "2017-02-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 1413-9 du code de la sant\u00e9 publique", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717306.json b/public/organe/PO717306.json new file mode 100644 index 0000000..e001996 --- /dev/null +++ b/public/organe/PO717306.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717306", "codeType": "ORGEXTPARL", "libelle": "Conseil scientifique sur les processus de radicalisation", "libelleEdition": null, "libelleAbrege": "Conseil scientifique processus radicalisation", "libelleAbrev": "360", "viMoDe": {"dateDebut": "2017-05-03", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 123-2 du code de la s\u00e9curit\u00e9 int\u00e9rieure", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717308.json b/public/organe/PO717308.json new file mode 100644 index 0000000..4fab9b6 --- /dev/null +++ b/public/organe/PO717308.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717308", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de massif des Alpes", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 massif des Alpes", "libelleAbrev": "364", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 7 de la loi n\u00b0 85-30 du 9 janvier 1985", "siteInternet": "http://www.cget.gouv.fr/montagne/commissariats-de-massifs", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717311.json b/public/organe/PO717311.json new file mode 100644 index 0000000..0462f11 --- /dev/null +++ b/public/organe/PO717311.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717311", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de massif du Massif central", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 Massif central", "libelleAbrev": "365", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 7 de la loi n\u00b0 85-30 du 9 janvier 1985", "siteInternet": "http://www.cget.gouv.fr/montagne/commissariats-de-massifs", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717314.json b/public/organe/PO717314.json new file mode 100644 index 0000000..316d718 --- /dev/null +++ b/public/organe/PO717314.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717314", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de massif du Massif jurassien", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 massif du Jura", "libelleAbrev": "366", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 7 de la loi n\u00b0 85-30 du 9 janvier 1985", "siteInternet": "http://www.cget.gouv.fr/montagne/commissariats-de-massifs", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717317.json b/public/organe/PO717317.json new file mode 100644 index 0000000..1050328 --- /dev/null +++ b/public/organe/PO717317.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717317", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de massif des Pyr\u00e9n\u00e9es", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 massif Pyr\u00e9n\u00e9es", "libelleAbrev": "367", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 7 de la loi n\u00b0 85-30 du 9 janvier 1985", "siteInternet": "http://www.cget.gouv.fr/montagne/commissariats-de-massifs", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717320.json b/public/organe/PO717320.json new file mode 100644 index 0000000..e5b5020 --- /dev/null +++ b/public/organe/PO717320.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717320", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de massif du Massif vosgiens", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 Massif vosgiens", "libelleAbrev": "368", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 7 de la loi n\u00b0 85-30 du 9 janvier 1985", "siteInternet": "http://www.cget.gouv.fr/montagne/commissariats-de-massifs", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717323.json b/public/organe/PO717323.json new file mode 100644 index 0000000..7d8143a --- /dev/null +++ b/public/organe/PO717323.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717323", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de bassin Adour-Garonne", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 bassin Adour-Garonne", "libelleAbrev": "369", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 213-8 du code de l\u2019environnement", "siteInternet": "http://www.eaufrance.fr/s-informer/agir-et-participer/participer/concertation/les-comites-de-bassin", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO717325.json b/public/organe/PO717325.json new file mode 100644 index 0000000..3f91975 --- /dev/null +++ b/public/organe/PO717325.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717325", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de bassin Artois-Picardie", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 bassin Artois-Picardie", "libelleAbrev": "370", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 213-8 du code de l\u2019environnement", "siteInternet": "http://www.eaufrance.fr/s-informer/agir-et-participer/participer/concertation/les-comites-de-bassin", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO717327.json b/public/organe/PO717327.json new file mode 100644 index 0000000..5dc42c8 --- /dev/null +++ b/public/organe/PO717327.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717327", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de bassin Loire-Bretagne", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 de bassin Loire-Bretagne", "libelleAbrev": "371", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 213-8 du code de l\u2019environnement", "siteInternet": "https://agence.eau-loire-bretagne.fr/home/comite-de-bassin/comite-bassin-loire-bretagne-concertation-des-acteurs-de-leau.html", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO717329.json b/public/organe/PO717329.json new file mode 100644 index 0000000..74569f3 --- /dev/null +++ b/public/organe/PO717329.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717329", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de bassin Rhin-Meuse", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 de bassin Rhin-Meuse", "libelleAbrev": "372", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 213-8 du code de l\u2019environnement", "siteInternet": "http://www.eau-rhin-meuse.fr/comite-bassin-role", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO717331.json b/public/organe/PO717331.json new file mode 100644 index 0000000..5e872dc --- /dev/null +++ b/public/organe/PO717331.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717331", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de bassin Rh\u00f4ne-M\u00e9diterran\u00e9e", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 de bassin Rh\u00f4ne-M\u00e9diterran\u00e9e", "libelleAbrev": "373", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 213-8 du code de l\u2019environnement", "siteInternet": "http://www.eaufrance.fr/s-informer/agir-et-participer/participer/concertation/les-comites-de-bassin", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO717333.json b/public/organe/PO717333.json new file mode 100644 index 0000000..ab79636 --- /dev/null +++ b/public/organe/PO717333.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717333", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de bassin Seine-Normandie", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 de bassin Seine-Normandie", "libelleAbrev": "374", "viMoDe": {"dateDebut": "2016-12-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 213-8 du code de l\u2019environnement", "siteInternet": "http://www.eaufrance.fr/s-informer/agir-et-participer/participer/concertation/les-comites-de-bassin", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO717335.json b/public/organe/PO717335.json new file mode 100644 index 0000000..a683eb3 --- /dev/null +++ b/public/organe/PO717335.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717335", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Office fran\u00e7ais de l'immigration et de l'int\u00e9gration", "libelleEdition": null, "libelleAbrege": "CA Office fran\u00e7aise immigration et int\u00e9gration", "libelleAbrev": "343", "viMoDe": {"dateDebut": "2015-07-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 5223-3 du code du travail", "siteInternet": "http://www.ofii.fr/qui-sommes-nous/organisation", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717338.json b/public/organe/PO717338.json new file mode 100644 index 0000000..ac9d0cb --- /dev/null +++ b/public/organe/PO717338.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717338", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration du centre scientifique et technique du b\u00e2timent", "libelleEdition": null, "libelleAbrege": "CA centre scientifique et technique du b\u00e2timent", "libelleAbrev": "346", "viMoDe": {"dateDebut": "2015-08-17", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Articles L. 142-1 et R. 142-2 du code de la construction et de l'habitation", "siteInternet": "http://www.cstb.fr/cstb/organisation/instances-de-gouvernance/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717347.json b/public/organe/PO717347.json new file mode 100644 index 0000000..d075582 --- /dev/null +++ b/public/organe/PO717347.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717347", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration du Fonds national des aides \u00e0 la pierre", "libelleEdition": null, "libelleAbrege": "Fonds national aide \u00e0 la pierre", "libelleAbrev": "349", "viMoDe": {"dateDebut": "2016-12-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 435-1 du code de la construction et de l'habitation", "siteInternet": "https://www.anil.org/documentation-experte/analyses-juridiques-jurisprudence/analyses-juridiques/analyses-juridiques-2016/fonds-national-des-aides-a-la-pierre/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717349.json b/public/organe/PO717349.json new file mode 100644 index 0000000..5b00a43 --- /dev/null +++ b/public/organe/PO717349.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717349", "codeType": "ORGEXTPARL", "libelle": "Instance nationale du support\u00e9risme", "libelleEdition": null, "libelleAbrege": "Instance nationale du support\u00e9risme", "libelleAbrev": "350", "viMoDe": {"dateDebut": "2016-05-10", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 224-2 du code du sport", "siteInternet": "http://www.sports.gouv.fr/accueil-du-site/a-la-une/article/Instance-nationale-du-supporterisme", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717423.json b/public/organe/PO717423.json new file mode 100644 index 0000000..e07161e --- /dev/null +++ b/public/organe/PO717423.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717423", "codeType": "ORGEXTPARL", "libelle": "Haut Conseil de la famille, de l'enfance et de l'\u00e2ge \u2013 Famille", "libelleEdition": null, "libelleAbrege": "Haut Conseil famille, formation famille", "libelleAbrev": "375", "viMoDe": {"dateDebut": "2016-10-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 142-1 du code de l'action sociale et des familles", "siteInternet": "http://www.hcfea.fr/", "nombreReunionsAnnuelles": "1"}} \ No newline at end of file diff --git a/public/organe/PO717425.json b/public/organe/PO717425.json new file mode 100644 index 0000000..16d58da --- /dev/null +++ b/public/organe/PO717425.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717425", "codeType": "ORGEXTPARL", "libelle": "Haut Conseil de la famille, de l'enfance et de l'\u00e2ge \u2013 Enfance et adolescence", "libelleEdition": null, "libelleAbrege": "Haut\u00a0Conseil\u00a0famille,\u00a0formation\u00a0enfance", "libelleAbrev": "376", "viMoDe": {"dateDebut": "2016-10-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 142-1 du code de l'action sociale et des familles", "siteInternet": "http://www.hcfea.fr/", "nombreReunionsAnnuelles": "1"}} \ No newline at end of file diff --git a/public/organe/PO717427.json b/public/organe/PO717427.json new file mode 100644 index 0000000..2e9d430 --- /dev/null +++ b/public/organe/PO717427.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717427", "codeType": "ORGEXTPARL", "libelle": "Haut Conseil de la famille, de l'enfance et de l'\u00e2ge - \u00c2ge", "libelleEdition": null, "libelleAbrege": "Haut\u00a0Conseil\u00a0famille,\u00a0formation\u00a0\u00e2ge", "libelleAbrev": "377", "viMoDe": {"dateDebut": "2016-10-25", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 142-1 du code de l'action sociale et des familles", "siteInternet": "http://www.hcfea.fr/", "nombreReunionsAnnuelles": "1"}} \ No newline at end of file diff --git a/public/organe/PO717433.json b/public/organe/PO717433.json new file mode 100644 index 0000000..b6230f4 --- /dev/null +++ b/public/organe/PO717433.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717433", "codeType": "ORGEXTPARL", "libelle": "Conseil de surveillance de l\u2019\u00e9tablissement public soci\u00e9t\u00e9 canal seine-nord europe", "libelleEdition": null, "libelleAbrege": "Conseil surveillance canal Seine-nord Europe", "libelleAbrev": "358", "viMoDe": {"dateDebut": "2016-04-21", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 3 de l'ordonnance n\u00b0 2016-489 du 21 avril 2016", "siteInternet": "https://www.canal-seine-nord-europe.fr/Acteurs/La-Societe-du-Canal-Seine-Nord-Europe", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717436.json b/public/organe/PO717436.json new file mode 100644 index 0000000..6e5a789 --- /dev/null +++ b/public/organe/PO717436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717436", "codeType": "ORGEXTPARL", "libelle": "Commission d\u00e9partementale pr\u00e9vue \u00e0 l'article L. 2334-37 du code g\u00e9n\u00e9ral des collectivit\u00e9s territoriales", "libelleEdition": null, "libelleAbrege": "Commission charg\u00e9e de la DETR", "libelleAbrev": "357", "viMoDe": {"dateDebut": "2016-12-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 2334-37 du code g\u00e9n\u00e9ral des collectivit\u00e9s territoriales", "siteInternet": "https://www.collectivites-locales.gouv.fr/dotation-dequipement-des-territoires-ruraux-detr", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717438.json b/public/organe/PO717438.json new file mode 100644 index 0000000..ddc7fd8 --- /dev/null +++ b/public/organe/PO717438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO717438", "codeType": "ORGEXTPARL", "libelle": "Conseil consultatif de la garde nationale", "libelleEdition": null, "libelleAbrege": "Conseil consultatif de la garde nationale", "libelleAbrev": "356", "viMoDe": {"dateDebut": "2016-10-13", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 7 du d\u00e9cret n\u00b0 2016-1364 du 13 octobre 2016", "siteInternet": "https://www.defense.gouv.fr/reserve/presentation-generale/gouvernance/gouvernance-de-la-garde-nationale", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO717462.json b/public/organe/PO717462.json new file mode 100644 index 0000000..ce6ca9a --- /dev/null +++ b/public/organe/PO717462.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717462", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO717464.json b/public/organe/PO717464.json new file mode 100644 index 0000000..7cba3c7 --- /dev/null +++ b/public/organe/PO717464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717464", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO717466.json b/public/organe/PO717466.json new file mode 100644 index 0000000..724277a --- /dev/null +++ b/public/organe/PO717466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717466", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO717468.json b/public/organe/PO717468.json new file mode 100644 index 0000000..92f7fac --- /dev/null +++ b/public/organe/PO717468.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717468", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO717470.json b/public/organe/PO717470.json new file mode 100644 index 0000000..6f0edfd --- /dev/null +++ b/public/organe/PO717470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717470", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO717472.json b/public/organe/PO717472.json new file mode 100644 index 0000000..1d4fb9d --- /dev/null +++ b/public/organe/PO717472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717472", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO717474.json b/public/organe/PO717474.json new file mode 100644 index 0000000..bc4e1bf --- /dev/null +++ b/public/organe/PO717474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717474", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO717476.json b/public/organe/PO717476.json new file mode 100644 index 0000000..18588e2 --- /dev/null +++ b/public/organe/PO717476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717476", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO717478.json b/public/organe/PO717478.json new file mode 100644 index 0000000..9bd8032 --- /dev/null +++ b/public/organe/PO717478.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717478", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO717480.json b/public/organe/PO717480.json new file mode 100644 index 0000000..f717b4e --- /dev/null +++ b/public/organe/PO717480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717480", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO717482.json b/public/organe/PO717482.json new file mode 100644 index 0000000..d18205a --- /dev/null +++ b/public/organe/PO717482.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717482", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO717484.json b/public/organe/PO717484.json new file mode 100644 index 0000000..501c7a3 --- /dev/null +++ b/public/organe/PO717484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717484", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO717486.json b/public/organe/PO717486.json new file mode 100644 index 0000000..8199c1e --- /dev/null +++ b/public/organe/PO717486.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717486", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO717488.json b/public/organe/PO717488.json new file mode 100644 index 0000000..ef336b2 --- /dev/null +++ b/public/organe/PO717488.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717488", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO717490.json b/public/organe/PO717490.json new file mode 100644 index 0000000..7d9f245 --- /dev/null +++ b/public/organe/PO717490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717490", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO717492.json b/public/organe/PO717492.json new file mode 100644 index 0000000..a34701b --- /dev/null +++ b/public/organe/PO717492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717492", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO717494.json b/public/organe/PO717494.json new file mode 100644 index 0000000..fdaa4bc --- /dev/null +++ b/public/organe/PO717494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717494", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO717496.json b/public/organe/PO717496.json new file mode 100644 index 0000000..ea5081f --- /dev/null +++ b/public/organe/PO717496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717496", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO717498.json b/public/organe/PO717498.json new file mode 100644 index 0000000..b4eeee9 --- /dev/null +++ b/public/organe/PO717498.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717498", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO717500.json b/public/organe/PO717500.json new file mode 100644 index 0000000..9af8803 --- /dev/null +++ b/public/organe/PO717500.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717500", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO717502.json b/public/organe/PO717502.json new file mode 100644 index 0000000..4ceb03b --- /dev/null +++ b/public/organe/PO717502.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717502", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO717504.json b/public/organe/PO717504.json new file mode 100644 index 0000000..b394657 --- /dev/null +++ b/public/organe/PO717504.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717504", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO717506.json b/public/organe/PO717506.json new file mode 100644 index 0000000..1c7620f --- /dev/null +++ b/public/organe/PO717506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717506", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO717508.json b/public/organe/PO717508.json new file mode 100644 index 0000000..1349a91 --- /dev/null +++ b/public/organe/PO717508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717508", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO717510.json b/public/organe/PO717510.json new file mode 100644 index 0000000..8adb1fe --- /dev/null +++ b/public/organe/PO717510.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717510", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO717512.json b/public/organe/PO717512.json new file mode 100644 index 0000000..1b3c2b9 --- /dev/null +++ b/public/organe/PO717512.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717512", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO717514.json b/public/organe/PO717514.json new file mode 100644 index 0000000..49b2492 --- /dev/null +++ b/public/organe/PO717514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717514", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO717516.json b/public/organe/PO717516.json new file mode 100644 index 0000000..de08da2 --- /dev/null +++ b/public/organe/PO717516.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717516", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO717518.json b/public/organe/PO717518.json new file mode 100644 index 0000000..a7f12db --- /dev/null +++ b/public/organe/PO717518.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717518", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO717520.json b/public/organe/PO717520.json new file mode 100644 index 0000000..ff96d10 --- /dev/null +++ b/public/organe/PO717520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717520", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO717522.json b/public/organe/PO717522.json new file mode 100644 index 0000000..ac8d6d5 --- /dev/null +++ b/public/organe/PO717522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717522", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO717524.json b/public/organe/PO717524.json new file mode 100644 index 0000000..cdc5962 --- /dev/null +++ b/public/organe/PO717524.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717524", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO717526.json b/public/organe/PO717526.json new file mode 100644 index 0000000..cade2ac --- /dev/null +++ b/public/organe/PO717526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717526", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO717528.json b/public/organe/PO717528.json new file mode 100644 index 0000000..7245534 --- /dev/null +++ b/public/organe/PO717528.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717528", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO717530.json b/public/organe/PO717530.json new file mode 100644 index 0000000..549bb4b --- /dev/null +++ b/public/organe/PO717530.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717530", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO717532.json b/public/organe/PO717532.json new file mode 100644 index 0000000..dab1c31 --- /dev/null +++ b/public/organe/PO717532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717532", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO717534.json b/public/organe/PO717534.json new file mode 100644 index 0000000..f94947d --- /dev/null +++ b/public/organe/PO717534.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717534", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO717536.json b/public/organe/PO717536.json new file mode 100644 index 0000000..2f08b1b --- /dev/null +++ b/public/organe/PO717536.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717536", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO717538.json b/public/organe/PO717538.json new file mode 100644 index 0000000..a73a954 --- /dev/null +++ b/public/organe/PO717538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717538", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO717540.json b/public/organe/PO717540.json new file mode 100644 index 0000000..c82a7f5 --- /dev/null +++ b/public/organe/PO717540.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717540", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO717542.json b/public/organe/PO717542.json new file mode 100644 index 0000000..d51d7e8 --- /dev/null +++ b/public/organe/PO717542.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717542", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO717544.json b/public/organe/PO717544.json new file mode 100644 index 0000000..a7f06f1 --- /dev/null +++ b/public/organe/PO717544.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717544", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO717546.json b/public/organe/PO717546.json new file mode 100644 index 0000000..00e8857 --- /dev/null +++ b/public/organe/PO717546.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717546", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717548.json b/public/organe/PO717548.json new file mode 100644 index 0000000..e12ec15 --- /dev/null +++ b/public/organe/PO717548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717548", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717550.json b/public/organe/PO717550.json new file mode 100644 index 0000000..5281bd2 --- /dev/null +++ b/public/organe/PO717550.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717550", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717552.json b/public/organe/PO717552.json new file mode 100644 index 0000000..42f2e56 --- /dev/null +++ b/public/organe/PO717552.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717552", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717554.json b/public/organe/PO717554.json new file mode 100644 index 0000000..3e90dc1 --- /dev/null +++ b/public/organe/PO717554.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717554", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717556.json b/public/organe/PO717556.json new file mode 100644 index 0000000..87ed7a7 --- /dev/null +++ b/public/organe/PO717556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717556", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717558.json b/public/organe/PO717558.json new file mode 100644 index 0000000..604a26c --- /dev/null +++ b/public/organe/PO717558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717558", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717560.json b/public/organe/PO717560.json new file mode 100644 index 0000000..2a215b2 --- /dev/null +++ b/public/organe/PO717560.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717560", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717562.json b/public/organe/PO717562.json new file mode 100644 index 0000000..824ca6a --- /dev/null +++ b/public/organe/PO717562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717562", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717564.json b/public/organe/PO717564.json new file mode 100644 index 0000000..061abea --- /dev/null +++ b/public/organe/PO717564.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717564", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717566.json b/public/organe/PO717566.json new file mode 100644 index 0000000..b6663ca --- /dev/null +++ b/public/organe/PO717566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717566", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717568.json b/public/organe/PO717568.json new file mode 100644 index 0000000..b26f134 --- /dev/null +++ b/public/organe/PO717568.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717568", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717570.json b/public/organe/PO717570.json new file mode 100644 index 0000000..a64e0e1 --- /dev/null +++ b/public/organe/PO717570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717570", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717572.json b/public/organe/PO717572.json new file mode 100644 index 0000000..f1ea87c --- /dev/null +++ b/public/organe/PO717572.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717572", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717574.json b/public/organe/PO717574.json new file mode 100644 index 0000000..57d3a0f --- /dev/null +++ b/public/organe/PO717574.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717574", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717576.json b/public/organe/PO717576.json new file mode 100644 index 0000000..627de32 --- /dev/null +++ b/public/organe/PO717576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717576", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO717578.json b/public/organe/PO717578.json new file mode 100644 index 0000000..7015879 --- /dev/null +++ b/public/organe/PO717578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717578", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO717580.json b/public/organe/PO717580.json new file mode 100644 index 0000000..83b35da --- /dev/null +++ b/public/organe/PO717580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717580", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO717582.json b/public/organe/PO717582.json new file mode 100644 index 0000000..c120131 --- /dev/null +++ b/public/organe/PO717582.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717582", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO717584.json b/public/organe/PO717584.json new file mode 100644 index 0000000..2427b4b --- /dev/null +++ b/public/organe/PO717584.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717584", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO717586.json b/public/organe/PO717586.json new file mode 100644 index 0000000..d300090 --- /dev/null +++ b/public/organe/PO717586.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717586", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO717588.json b/public/organe/PO717588.json new file mode 100644 index 0000000..0a88bee --- /dev/null +++ b/public/organe/PO717588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717588", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO717590.json b/public/organe/PO717590.json new file mode 100644 index 0000000..2f8d717 --- /dev/null +++ b/public/organe/PO717590.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717590", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO717592.json b/public/organe/PO717592.json new file mode 100644 index 0000000..b7286d3 --- /dev/null +++ b/public/organe/PO717592.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717592", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO717594.json b/public/organe/PO717594.json new file mode 100644 index 0000000..549192a --- /dev/null +++ b/public/organe/PO717594.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717594", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO717596.json b/public/organe/PO717596.json new file mode 100644 index 0000000..1dcf36d --- /dev/null +++ b/public/organe/PO717596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717596", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO717598.json b/public/organe/PO717598.json new file mode 100644 index 0000000..f924257 --- /dev/null +++ b/public/organe/PO717598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717598", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO717600.json b/public/organe/PO717600.json new file mode 100644 index 0000000..370be5f --- /dev/null +++ b/public/organe/PO717600.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717600", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO717602.json b/public/organe/PO717602.json new file mode 100644 index 0000000..1108036 --- /dev/null +++ b/public/organe/PO717602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717602", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO717604.json b/public/organe/PO717604.json new file mode 100644 index 0000000..91f33a4 --- /dev/null +++ b/public/organe/PO717604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717604", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO717606.json b/public/organe/PO717606.json new file mode 100644 index 0000000..33b96a2 --- /dev/null +++ b/public/organe/PO717606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717606", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO717608.json b/public/organe/PO717608.json new file mode 100644 index 0000000..d13863d --- /dev/null +++ b/public/organe/PO717608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717608", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO717610.json b/public/organe/PO717610.json new file mode 100644 index 0000000..62f7f58 --- /dev/null +++ b/public/organe/PO717610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717610", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO717612.json b/public/organe/PO717612.json new file mode 100644 index 0000000..b6d2cd2 --- /dev/null +++ b/public/organe/PO717612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717612", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO717614.json b/public/organe/PO717614.json new file mode 100644 index 0000000..23bb1a1 --- /dev/null +++ b/public/organe/PO717614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717614", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO717616.json b/public/organe/PO717616.json new file mode 100644 index 0000000..6760771 --- /dev/null +++ b/public/organe/PO717616.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717616", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO717618.json b/public/organe/PO717618.json new file mode 100644 index 0000000..50bdc3f --- /dev/null +++ b/public/organe/PO717618.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717618", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO717620.json b/public/organe/PO717620.json new file mode 100644 index 0000000..55468e6 --- /dev/null +++ b/public/organe/PO717620.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717620", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO717622.json b/public/organe/PO717622.json new file mode 100644 index 0000000..00c79e4 --- /dev/null +++ b/public/organe/PO717622.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717622", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO717624.json b/public/organe/PO717624.json new file mode 100644 index 0000000..c6e1f01 --- /dev/null +++ b/public/organe/PO717624.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717624", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO717626.json b/public/organe/PO717626.json new file mode 100644 index 0000000..815537d --- /dev/null +++ b/public/organe/PO717626.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717626", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO717628.json b/public/organe/PO717628.json new file mode 100644 index 0000000..56303bc --- /dev/null +++ b/public/organe/PO717628.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717628", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO717630.json b/public/organe/PO717630.json new file mode 100644 index 0000000..8c4533d --- /dev/null +++ b/public/organe/PO717630.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717630", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO717632.json b/public/organe/PO717632.json new file mode 100644 index 0000000..106b14c --- /dev/null +++ b/public/organe/PO717632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717632", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO717634.json b/public/organe/PO717634.json new file mode 100644 index 0000000..83a857a --- /dev/null +++ b/public/organe/PO717634.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717634", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO717636.json b/public/organe/PO717636.json new file mode 100644 index 0000000..0c2655a --- /dev/null +++ b/public/organe/PO717636.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717636", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO717638.json b/public/organe/PO717638.json new file mode 100644 index 0000000..8e2cb8d --- /dev/null +++ b/public/organe/PO717638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717638", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO717640.json b/public/organe/PO717640.json new file mode 100644 index 0000000..704e419 --- /dev/null +++ b/public/organe/PO717640.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717640", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO717642.json b/public/organe/PO717642.json new file mode 100644 index 0000000..bd0d1c1 --- /dev/null +++ b/public/organe/PO717642.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717642", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO717644.json b/public/organe/PO717644.json new file mode 100644 index 0000000..91831a1 --- /dev/null +++ b/public/organe/PO717644.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717644", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO717646.json b/public/organe/PO717646.json new file mode 100644 index 0000000..2a773e3 --- /dev/null +++ b/public/organe/PO717646.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717646", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO717648.json b/public/organe/PO717648.json new file mode 100644 index 0000000..b47ba12 --- /dev/null +++ b/public/organe/PO717648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717648", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO717650.json b/public/organe/PO717650.json new file mode 100644 index 0000000..2ff38f7 --- /dev/null +++ b/public/organe/PO717650.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717650", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO717652.json b/public/organe/PO717652.json new file mode 100644 index 0000000..97bab6e --- /dev/null +++ b/public/organe/PO717652.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717652", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO717654.json b/public/organe/PO717654.json new file mode 100644 index 0000000..5f091bc --- /dev/null +++ b/public/organe/PO717654.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717654", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO717656.json b/public/organe/PO717656.json new file mode 100644 index 0000000..0da2155 --- /dev/null +++ b/public/organe/PO717656.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717656", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO717658.json b/public/organe/PO717658.json new file mode 100644 index 0000000..75eb8e6 --- /dev/null +++ b/public/organe/PO717658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717658", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO717660.json b/public/organe/PO717660.json new file mode 100644 index 0000000..7eb2177 --- /dev/null +++ b/public/organe/PO717660.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717660", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO717662.json b/public/organe/PO717662.json new file mode 100644 index 0000000..3bca91e --- /dev/null +++ b/public/organe/PO717662.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717662", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO717664.json b/public/organe/PO717664.json new file mode 100644 index 0000000..c7c14a3 --- /dev/null +++ b/public/organe/PO717664.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717664", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO717666.json b/public/organe/PO717666.json new file mode 100644 index 0000000..f97265c --- /dev/null +++ b/public/organe/PO717666.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717666", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO717668.json b/public/organe/PO717668.json new file mode 100644 index 0000000..b4cd0e4 --- /dev/null +++ b/public/organe/PO717668.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717668", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO717670.json b/public/organe/PO717670.json new file mode 100644 index 0000000..0e6eb9e --- /dev/null +++ b/public/organe/PO717670.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717670", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO717672.json b/public/organe/PO717672.json new file mode 100644 index 0000000..53d29ef --- /dev/null +++ b/public/organe/PO717672.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717672", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO717674.json b/public/organe/PO717674.json new file mode 100644 index 0000000..247c365 --- /dev/null +++ b/public/organe/PO717674.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717674", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO717676.json b/public/organe/PO717676.json new file mode 100644 index 0000000..406f830 --- /dev/null +++ b/public/organe/PO717676.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717676", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717678.json b/public/organe/PO717678.json new file mode 100644 index 0000000..e6628db --- /dev/null +++ b/public/organe/PO717678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717678", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO717680.json b/public/organe/PO717680.json new file mode 100644 index 0000000..5a04e6d --- /dev/null +++ b/public/organe/PO717680.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717680", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717682.json b/public/organe/PO717682.json new file mode 100644 index 0000000..86f35d4 --- /dev/null +++ b/public/organe/PO717682.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717682", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717684.json b/public/organe/PO717684.json new file mode 100644 index 0000000..1889b1c --- /dev/null +++ b/public/organe/PO717684.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717684", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO717686.json b/public/organe/PO717686.json new file mode 100644 index 0000000..1cf5f39 --- /dev/null +++ b/public/organe/PO717686.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717686", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO717688.json b/public/organe/PO717688.json new file mode 100644 index 0000000..2a7eb76 --- /dev/null +++ b/public/organe/PO717688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717688", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO717690.json b/public/organe/PO717690.json new file mode 100644 index 0000000..327d072 --- /dev/null +++ b/public/organe/PO717690.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717690", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO717692.json b/public/organe/PO717692.json new file mode 100644 index 0000000..9959316 --- /dev/null +++ b/public/organe/PO717692.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717692", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO717694.json b/public/organe/PO717694.json new file mode 100644 index 0000000..68ae6b9 --- /dev/null +++ b/public/organe/PO717694.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717694", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO717696.json b/public/organe/PO717696.json new file mode 100644 index 0000000..7d1ae87 --- /dev/null +++ b/public/organe/PO717696.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717696", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO717698.json b/public/organe/PO717698.json new file mode 100644 index 0000000..3ce6430 --- /dev/null +++ b/public/organe/PO717698.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717698", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO717700.json b/public/organe/PO717700.json new file mode 100644 index 0000000..4cbf8fa --- /dev/null +++ b/public/organe/PO717700.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717700", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO717702.json b/public/organe/PO717702.json new file mode 100644 index 0000000..67abd79 --- /dev/null +++ b/public/organe/PO717702.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717702", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO717704.json b/public/organe/PO717704.json new file mode 100644 index 0000000..f54410b --- /dev/null +++ b/public/organe/PO717704.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717704", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717706.json b/public/organe/PO717706.json new file mode 100644 index 0000000..e4e1971 --- /dev/null +++ b/public/organe/PO717706.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717706", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717708.json b/public/organe/PO717708.json new file mode 100644 index 0000000..1d8b701 --- /dev/null +++ b/public/organe/PO717708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717708", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717710.json b/public/organe/PO717710.json new file mode 100644 index 0000000..fcca826 --- /dev/null +++ b/public/organe/PO717710.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717710", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717712.json b/public/organe/PO717712.json new file mode 100644 index 0000000..cf2d9ea --- /dev/null +++ b/public/organe/PO717712.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717712", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717714.json b/public/organe/PO717714.json new file mode 100644 index 0000000..fff1e46 --- /dev/null +++ b/public/organe/PO717714.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717714", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717716.json b/public/organe/PO717716.json new file mode 100644 index 0000000..9a99691 --- /dev/null +++ b/public/organe/PO717716.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717716", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717718.json b/public/organe/PO717718.json new file mode 100644 index 0000000..7a34529 --- /dev/null +++ b/public/organe/PO717718.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717718", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717720.json b/public/organe/PO717720.json new file mode 100644 index 0000000..7fefa62 --- /dev/null +++ b/public/organe/PO717720.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717720", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717722.json b/public/organe/PO717722.json new file mode 100644 index 0000000..bdae670 --- /dev/null +++ b/public/organe/PO717722.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717722", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717724.json b/public/organe/PO717724.json new file mode 100644 index 0000000..645bc64 --- /dev/null +++ b/public/organe/PO717724.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717724", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO717726.json b/public/organe/PO717726.json new file mode 100644 index 0000000..1a89b65 --- /dev/null +++ b/public/organe/PO717726.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717726", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717728.json b/public/organe/PO717728.json new file mode 100644 index 0000000..79c5f8f --- /dev/null +++ b/public/organe/PO717728.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717728", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO717730.json b/public/organe/PO717730.json new file mode 100644 index 0000000..8e6cd37 --- /dev/null +++ b/public/organe/PO717730.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717730", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO717732.json b/public/organe/PO717732.json new file mode 100644 index 0000000..c214659 --- /dev/null +++ b/public/organe/PO717732.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717732", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717734.json b/public/organe/PO717734.json new file mode 100644 index 0000000..fbfb014 --- /dev/null +++ b/public/organe/PO717734.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717734", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717736.json b/public/organe/PO717736.json new file mode 100644 index 0000000..28b45e1 --- /dev/null +++ b/public/organe/PO717736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717736", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717738.json b/public/organe/PO717738.json new file mode 100644 index 0000000..f757c0a --- /dev/null +++ b/public/organe/PO717738.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717738", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717740.json b/public/organe/PO717740.json new file mode 100644 index 0000000..c45e1c8 --- /dev/null +++ b/public/organe/PO717740.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717740", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717742.json b/public/organe/PO717742.json new file mode 100644 index 0000000..cbd3b26 --- /dev/null +++ b/public/organe/PO717742.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717742", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717744.json b/public/organe/PO717744.json new file mode 100644 index 0000000..31c5b15 --- /dev/null +++ b/public/organe/PO717744.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717744", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO717746.json b/public/organe/PO717746.json new file mode 100644 index 0000000..59a37bf --- /dev/null +++ b/public/organe/PO717746.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717746", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717748.json b/public/organe/PO717748.json new file mode 100644 index 0000000..b8fa9f0 --- /dev/null +++ b/public/organe/PO717748.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717748", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717750.json b/public/organe/PO717750.json new file mode 100644 index 0000000..85db1c4 --- /dev/null +++ b/public/organe/PO717750.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717750", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717752.json b/public/organe/PO717752.json new file mode 100644 index 0000000..75444b4 --- /dev/null +++ b/public/organe/PO717752.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717752", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO717754.json b/public/organe/PO717754.json new file mode 100644 index 0000000..1555de1 --- /dev/null +++ b/public/organe/PO717754.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717754", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO717756.json b/public/organe/PO717756.json new file mode 100644 index 0000000..f04a882 --- /dev/null +++ b/public/organe/PO717756.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717756", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717758.json b/public/organe/PO717758.json new file mode 100644 index 0000000..43aa97d --- /dev/null +++ b/public/organe/PO717758.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717758", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717760.json b/public/organe/PO717760.json new file mode 100644 index 0000000..6e435f6 --- /dev/null +++ b/public/organe/PO717760.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717760", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717762.json b/public/organe/PO717762.json new file mode 100644 index 0000000..d6f9760 --- /dev/null +++ b/public/organe/PO717762.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717762", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO717764.json b/public/organe/PO717764.json new file mode 100644 index 0000000..ece4798 --- /dev/null +++ b/public/organe/PO717764.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717764", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO717766.json b/public/organe/PO717766.json new file mode 100644 index 0000000..d631efd --- /dev/null +++ b/public/organe/PO717766.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717766", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO717768.json b/public/organe/PO717768.json new file mode 100644 index 0000000..c2ee1cb --- /dev/null +++ b/public/organe/PO717768.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717768", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO717770.json b/public/organe/PO717770.json new file mode 100644 index 0000000..8cb037a --- /dev/null +++ b/public/organe/PO717770.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717770", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO717772.json b/public/organe/PO717772.json new file mode 100644 index 0000000..27e539f --- /dev/null +++ b/public/organe/PO717772.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717772", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO717774.json b/public/organe/PO717774.json new file mode 100644 index 0000000..4e29314 --- /dev/null +++ b/public/organe/PO717774.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717774", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO717776.json b/public/organe/PO717776.json new file mode 100644 index 0000000..d24cb6c --- /dev/null +++ b/public/organe/PO717776.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717776", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO717778.json b/public/organe/PO717778.json new file mode 100644 index 0000000..8d9bef6 --- /dev/null +++ b/public/organe/PO717778.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717778", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO717780.json b/public/organe/PO717780.json new file mode 100644 index 0000000..d217ce0 --- /dev/null +++ b/public/organe/PO717780.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717780", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO717782.json b/public/organe/PO717782.json new file mode 100644 index 0000000..5e3fad0 --- /dev/null +++ b/public/organe/PO717782.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717782", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO717784.json b/public/organe/PO717784.json new file mode 100644 index 0000000..e237ecc --- /dev/null +++ b/public/organe/PO717784.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717784", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO717786.json b/public/organe/PO717786.json new file mode 100644 index 0000000..1e2101e --- /dev/null +++ b/public/organe/PO717786.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717786", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO717788.json b/public/organe/PO717788.json new file mode 100644 index 0000000..6b87b7a --- /dev/null +++ b/public/organe/PO717788.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717788", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO717790.json b/public/organe/PO717790.json new file mode 100644 index 0000000..f596729 --- /dev/null +++ b/public/organe/PO717790.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717790", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO717792.json b/public/organe/PO717792.json new file mode 100644 index 0000000..69aab7f --- /dev/null +++ b/public/organe/PO717792.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717792", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO717794.json b/public/organe/PO717794.json new file mode 100644 index 0000000..854ae2f --- /dev/null +++ b/public/organe/PO717794.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717794", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717796.json b/public/organe/PO717796.json new file mode 100644 index 0000000..f6ce7f8 --- /dev/null +++ b/public/organe/PO717796.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717796", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717798.json b/public/organe/PO717798.json new file mode 100644 index 0000000..485ff10 --- /dev/null +++ b/public/organe/PO717798.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717798", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717800.json b/public/organe/PO717800.json new file mode 100644 index 0000000..26c3600 --- /dev/null +++ b/public/organe/PO717800.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717800", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717802.json b/public/organe/PO717802.json new file mode 100644 index 0000000..2752862 --- /dev/null +++ b/public/organe/PO717802.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717802", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717804.json b/public/organe/PO717804.json new file mode 100644 index 0000000..e91ab7c --- /dev/null +++ b/public/organe/PO717804.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717804", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717806.json b/public/organe/PO717806.json new file mode 100644 index 0000000..edc1158 --- /dev/null +++ b/public/organe/PO717806.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717806", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO717808.json b/public/organe/PO717808.json new file mode 100644 index 0000000..26b7a40 --- /dev/null +++ b/public/organe/PO717808.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717808", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO717810.json b/public/organe/PO717810.json new file mode 100644 index 0000000..25d93d4 --- /dev/null +++ b/public/organe/PO717810.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717810", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717812.json b/public/organe/PO717812.json new file mode 100644 index 0000000..a088573 --- /dev/null +++ b/public/organe/PO717812.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717812", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717814.json b/public/organe/PO717814.json new file mode 100644 index 0000000..fabd3f4 --- /dev/null +++ b/public/organe/PO717814.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717814", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717816.json b/public/organe/PO717816.json new file mode 100644 index 0000000..44c3604 --- /dev/null +++ b/public/organe/PO717816.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717816", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717818.json b/public/organe/PO717818.json new file mode 100644 index 0000000..5270351 --- /dev/null +++ b/public/organe/PO717818.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717818", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717820.json b/public/organe/PO717820.json new file mode 100644 index 0000000..bc948c5 --- /dev/null +++ b/public/organe/PO717820.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717820", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717822.json b/public/organe/PO717822.json new file mode 100644 index 0000000..a0c825d --- /dev/null +++ b/public/organe/PO717822.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717822", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717824.json b/public/organe/PO717824.json new file mode 100644 index 0000000..d27b90f --- /dev/null +++ b/public/organe/PO717824.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717824", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717826.json b/public/organe/PO717826.json new file mode 100644 index 0000000..e7c5454 --- /dev/null +++ b/public/organe/PO717826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717826", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717828.json b/public/organe/PO717828.json new file mode 100644 index 0000000..189297e --- /dev/null +++ b/public/organe/PO717828.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717828", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717830.json b/public/organe/PO717830.json new file mode 100644 index 0000000..af33189 --- /dev/null +++ b/public/organe/PO717830.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717830", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717832.json b/public/organe/PO717832.json new file mode 100644 index 0000000..5b2feef --- /dev/null +++ b/public/organe/PO717832.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717832", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717834.json b/public/organe/PO717834.json new file mode 100644 index 0000000..9069707 --- /dev/null +++ b/public/organe/PO717834.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717834", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717836.json b/public/organe/PO717836.json new file mode 100644 index 0000000..67701e7 --- /dev/null +++ b/public/organe/PO717836.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717836", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717838.json b/public/organe/PO717838.json new file mode 100644 index 0000000..afd6780 --- /dev/null +++ b/public/organe/PO717838.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717838", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717840.json b/public/organe/PO717840.json new file mode 100644 index 0000000..b32fa49 --- /dev/null +++ b/public/organe/PO717840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717840", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO717842.json b/public/organe/PO717842.json new file mode 100644 index 0000000..b39e96d --- /dev/null +++ b/public/organe/PO717842.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717842", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO717844.json b/public/organe/PO717844.json new file mode 100644 index 0000000..307c9c4 --- /dev/null +++ b/public/organe/PO717844.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717844", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO717846.json b/public/organe/PO717846.json new file mode 100644 index 0000000..7a683a4 --- /dev/null +++ b/public/organe/PO717846.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717846", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO717848.json b/public/organe/PO717848.json new file mode 100644 index 0000000..3361de0 --- /dev/null +++ b/public/organe/PO717848.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717848", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO717850.json b/public/organe/PO717850.json new file mode 100644 index 0000000..258f563 --- /dev/null +++ b/public/organe/PO717850.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717850", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO717852.json b/public/organe/PO717852.json new file mode 100644 index 0000000..4f58d28 --- /dev/null +++ b/public/organe/PO717852.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717852", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717854.json b/public/organe/PO717854.json new file mode 100644 index 0000000..00fbc95 --- /dev/null +++ b/public/organe/PO717854.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717854", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO717856.json b/public/organe/PO717856.json new file mode 100644 index 0000000..392d357 --- /dev/null +++ b/public/organe/PO717856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717856", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717858.json b/public/organe/PO717858.json new file mode 100644 index 0000000..c74c488 --- /dev/null +++ b/public/organe/PO717858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717858", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717860.json b/public/organe/PO717860.json new file mode 100644 index 0000000..7ba67c8 --- /dev/null +++ b/public/organe/PO717860.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717860", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO717862.json b/public/organe/PO717862.json new file mode 100644 index 0000000..28f2c25 --- /dev/null +++ b/public/organe/PO717862.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717862", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO717864.json b/public/organe/PO717864.json new file mode 100644 index 0000000..59fc0bb --- /dev/null +++ b/public/organe/PO717864.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717864", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO717866.json b/public/organe/PO717866.json new file mode 100644 index 0000000..40c5461 --- /dev/null +++ b/public/organe/PO717866.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717866", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO717868.json b/public/organe/PO717868.json new file mode 100644 index 0000000..5188fb7 --- /dev/null +++ b/public/organe/PO717868.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717868", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO717870.json b/public/organe/PO717870.json new file mode 100644 index 0000000..659ecb4 --- /dev/null +++ b/public/organe/PO717870.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717870", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO717872.json b/public/organe/PO717872.json new file mode 100644 index 0000000..fe73c60 --- /dev/null +++ b/public/organe/PO717872.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717872", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717874.json b/public/organe/PO717874.json new file mode 100644 index 0000000..a0ef4d4 --- /dev/null +++ b/public/organe/PO717874.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717874", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717876.json b/public/organe/PO717876.json new file mode 100644 index 0000000..a0cd51d --- /dev/null +++ b/public/organe/PO717876.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717876", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717878.json b/public/organe/PO717878.json new file mode 100644 index 0000000..ad8b2ed --- /dev/null +++ b/public/organe/PO717878.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717878", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717880.json b/public/organe/PO717880.json new file mode 100644 index 0000000..db4542f --- /dev/null +++ b/public/organe/PO717880.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717880", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717882.json b/public/organe/PO717882.json new file mode 100644 index 0000000..379b5de --- /dev/null +++ b/public/organe/PO717882.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717882", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717884.json b/public/organe/PO717884.json new file mode 100644 index 0000000..4c9e907 --- /dev/null +++ b/public/organe/PO717884.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717884", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717886.json b/public/organe/PO717886.json new file mode 100644 index 0000000..c159e6c --- /dev/null +++ b/public/organe/PO717886.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717886", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO717888.json b/public/organe/PO717888.json new file mode 100644 index 0000000..e3396fa --- /dev/null +++ b/public/organe/PO717888.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717888", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717890.json b/public/organe/PO717890.json new file mode 100644 index 0000000..4c01f57 --- /dev/null +++ b/public/organe/PO717890.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717890", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717892.json b/public/organe/PO717892.json new file mode 100644 index 0000000..b4897a4 --- /dev/null +++ b/public/organe/PO717892.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717892", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717894.json b/public/organe/PO717894.json new file mode 100644 index 0000000..50aee59 --- /dev/null +++ b/public/organe/PO717894.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717894", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717896.json b/public/organe/PO717896.json new file mode 100644 index 0000000..c9d2e92 --- /dev/null +++ b/public/organe/PO717896.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717896", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO717898.json b/public/organe/PO717898.json new file mode 100644 index 0000000..b203f64 --- /dev/null +++ b/public/organe/PO717898.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717898", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717900.json b/public/organe/PO717900.json new file mode 100644 index 0000000..018b0c2 --- /dev/null +++ b/public/organe/PO717900.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717900", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO717902.json b/public/organe/PO717902.json new file mode 100644 index 0000000..37c5ef6 --- /dev/null +++ b/public/organe/PO717902.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717902", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO717904.json b/public/organe/PO717904.json new file mode 100644 index 0000000..4efbe05 --- /dev/null +++ b/public/organe/PO717904.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717904", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717906.json b/public/organe/PO717906.json new file mode 100644 index 0000000..78e7feb --- /dev/null +++ b/public/organe/PO717906.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717906", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO717908.json b/public/organe/PO717908.json new file mode 100644 index 0000000..0f921ab --- /dev/null +++ b/public/organe/PO717908.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717908", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717910.json b/public/organe/PO717910.json new file mode 100644 index 0000000..79aaf7c --- /dev/null +++ b/public/organe/PO717910.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717910", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO717912.json b/public/organe/PO717912.json new file mode 100644 index 0000000..2866ca4 --- /dev/null +++ b/public/organe/PO717912.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717912", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO717914.json b/public/organe/PO717914.json new file mode 100644 index 0000000..4162f6c --- /dev/null +++ b/public/organe/PO717914.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717914", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717916.json b/public/organe/PO717916.json new file mode 100644 index 0000000..227005a --- /dev/null +++ b/public/organe/PO717916.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717916", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO717918.json b/public/organe/PO717918.json new file mode 100644 index 0000000..1459596 --- /dev/null +++ b/public/organe/PO717918.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717918", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO717920.json b/public/organe/PO717920.json new file mode 100644 index 0000000..9d74326 --- /dev/null +++ b/public/organe/PO717920.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717920", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO717922.json b/public/organe/PO717922.json new file mode 100644 index 0000000..3f4c500 --- /dev/null +++ b/public/organe/PO717922.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717922", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO717924.json b/public/organe/PO717924.json new file mode 100644 index 0000000..dee4a0d --- /dev/null +++ b/public/organe/PO717924.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717924", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO717926.json b/public/organe/PO717926.json new file mode 100644 index 0000000..1d087a6 --- /dev/null +++ b/public/organe/PO717926.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717926", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717928.json b/public/organe/PO717928.json new file mode 100644 index 0000000..2cf7c83 --- /dev/null +++ b/public/organe/PO717928.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717928", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO717930.json b/public/organe/PO717930.json new file mode 100644 index 0000000..f83bedc --- /dev/null +++ b/public/organe/PO717930.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717930", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717932.json b/public/organe/PO717932.json new file mode 100644 index 0000000..77b2ae3 --- /dev/null +++ b/public/organe/PO717932.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717932", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717934.json b/public/organe/PO717934.json new file mode 100644 index 0000000..7000539 --- /dev/null +++ b/public/organe/PO717934.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717934", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO717936.json b/public/organe/PO717936.json new file mode 100644 index 0000000..1e5406e --- /dev/null +++ b/public/organe/PO717936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717936", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO717938.json b/public/organe/PO717938.json new file mode 100644 index 0000000..3237b4c --- /dev/null +++ b/public/organe/PO717938.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717938", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO717940.json b/public/organe/PO717940.json new file mode 100644 index 0000000..882c443 --- /dev/null +++ b/public/organe/PO717940.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717940", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO717942.json b/public/organe/PO717942.json new file mode 100644 index 0000000..2000646 --- /dev/null +++ b/public/organe/PO717942.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717942", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO717944.json b/public/organe/PO717944.json new file mode 100644 index 0000000..d1e7ca6 --- /dev/null +++ b/public/organe/PO717944.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717944", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO717946.json b/public/organe/PO717946.json new file mode 100644 index 0000000..fe6fec5 --- /dev/null +++ b/public/organe/PO717946.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717946", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO717948.json b/public/organe/PO717948.json new file mode 100644 index 0000000..8ef554f --- /dev/null +++ b/public/organe/PO717948.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717948", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO717950.json b/public/organe/PO717950.json new file mode 100644 index 0000000..e196f40 --- /dev/null +++ b/public/organe/PO717950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717950", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO717952.json b/public/organe/PO717952.json new file mode 100644 index 0000000..30c6ecd --- /dev/null +++ b/public/organe/PO717952.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717952", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO717954.json b/public/organe/PO717954.json new file mode 100644 index 0000000..76f056e --- /dev/null +++ b/public/organe/PO717954.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717954", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717956.json b/public/organe/PO717956.json new file mode 100644 index 0000000..5eeae42 --- /dev/null +++ b/public/organe/PO717956.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717956", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717958.json b/public/organe/PO717958.json new file mode 100644 index 0000000..246c31d --- /dev/null +++ b/public/organe/PO717958.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717958", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717960.json b/public/organe/PO717960.json new file mode 100644 index 0000000..6f7b23c --- /dev/null +++ b/public/organe/PO717960.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717960", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717962.json b/public/organe/PO717962.json new file mode 100644 index 0000000..f3d4e38 --- /dev/null +++ b/public/organe/PO717962.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717962", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717964.json b/public/organe/PO717964.json new file mode 100644 index 0000000..190bc50 --- /dev/null +++ b/public/organe/PO717964.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717964", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717966.json b/public/organe/PO717966.json new file mode 100644 index 0000000..8c454df --- /dev/null +++ b/public/organe/PO717966.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717966", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717968.json b/public/organe/PO717968.json new file mode 100644 index 0000000..863190a --- /dev/null +++ b/public/organe/PO717968.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717968", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO717970.json b/public/organe/PO717970.json new file mode 100644 index 0000000..ae83bcf --- /dev/null +++ b/public/organe/PO717970.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717970", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO717972.json b/public/organe/PO717972.json new file mode 100644 index 0000000..7f4da2b --- /dev/null +++ b/public/organe/PO717972.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717972", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO717974.json b/public/organe/PO717974.json new file mode 100644 index 0000000..faf2fbf --- /dev/null +++ b/public/organe/PO717974.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717974", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO717976.json b/public/organe/PO717976.json new file mode 100644 index 0000000..2d5f44a --- /dev/null +++ b/public/organe/PO717976.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717976", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO717978.json b/public/organe/PO717978.json new file mode 100644 index 0000000..a279884 --- /dev/null +++ b/public/organe/PO717978.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717978", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO717980.json b/public/organe/PO717980.json new file mode 100644 index 0000000..f963cb9 --- /dev/null +++ b/public/organe/PO717980.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717980", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO717982.json b/public/organe/PO717982.json new file mode 100644 index 0000000..3d2d93e --- /dev/null +++ b/public/organe/PO717982.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717982", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO717984.json b/public/organe/PO717984.json new file mode 100644 index 0000000..8d96f89 --- /dev/null +++ b/public/organe/PO717984.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717984", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO717986.json b/public/organe/PO717986.json new file mode 100644 index 0000000..06d0041 --- /dev/null +++ b/public/organe/PO717986.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717986", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO717988.json b/public/organe/PO717988.json new file mode 100644 index 0000000..2af966b --- /dev/null +++ b/public/organe/PO717988.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717988", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO717990.json b/public/organe/PO717990.json new file mode 100644 index 0000000..58acb11 --- /dev/null +++ b/public/organe/PO717990.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717990", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717992.json b/public/organe/PO717992.json new file mode 100644 index 0000000..22c492f --- /dev/null +++ b/public/organe/PO717992.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717992", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717994.json b/public/organe/PO717994.json new file mode 100644 index 0000000..e834582 --- /dev/null +++ b/public/organe/PO717994.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717994", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717996.json b/public/organe/PO717996.json new file mode 100644 index 0000000..f5c2861 --- /dev/null +++ b/public/organe/PO717996.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717996", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO717998.json b/public/organe/PO717998.json new file mode 100644 index 0000000..4492c4d --- /dev/null +++ b/public/organe/PO717998.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO717998", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO718000.json b/public/organe/PO718000.json new file mode 100644 index 0000000..b4b588d --- /dev/null +++ b/public/organe/PO718000.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718000", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO718002.json b/public/organe/PO718002.json new file mode 100644 index 0000000..44ca2b1 --- /dev/null +++ b/public/organe/PO718002.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718002", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO718004.json b/public/organe/PO718004.json new file mode 100644 index 0000000..064e65b --- /dev/null +++ b/public/organe/PO718004.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718004", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718006.json b/public/organe/PO718006.json new file mode 100644 index 0000000..eed7134 --- /dev/null +++ b/public/organe/PO718006.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718006", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718008.json b/public/organe/PO718008.json new file mode 100644 index 0000000..0c88e7b --- /dev/null +++ b/public/organe/PO718008.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718008", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718010.json b/public/organe/PO718010.json new file mode 100644 index 0000000..5d887fb --- /dev/null +++ b/public/organe/PO718010.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718010", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718012.json b/public/organe/PO718012.json new file mode 100644 index 0000000..834da07 --- /dev/null +++ b/public/organe/PO718012.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718012", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718014.json b/public/organe/PO718014.json new file mode 100644 index 0000000..89b092f --- /dev/null +++ b/public/organe/PO718014.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718014", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718016.json b/public/organe/PO718016.json new file mode 100644 index 0000000..3d147ca --- /dev/null +++ b/public/organe/PO718016.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718016", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718018.json b/public/organe/PO718018.json new file mode 100644 index 0000000..a6ee687 --- /dev/null +++ b/public/organe/PO718018.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718018", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718020.json b/public/organe/PO718020.json new file mode 100644 index 0000000..d675dd6 --- /dev/null +++ b/public/organe/PO718020.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718020", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718022.json b/public/organe/PO718022.json new file mode 100644 index 0000000..b18fc4f --- /dev/null +++ b/public/organe/PO718022.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718022", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718024.json b/public/organe/PO718024.json new file mode 100644 index 0000000..7fe0de7 --- /dev/null +++ b/public/organe/PO718024.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718024", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718026.json b/public/organe/PO718026.json new file mode 100644 index 0000000..2f46b84 --- /dev/null +++ b/public/organe/PO718026.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718026", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718028.json b/public/organe/PO718028.json new file mode 100644 index 0000000..4f832c6 --- /dev/null +++ b/public/organe/PO718028.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718028", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718030.json b/public/organe/PO718030.json new file mode 100644 index 0000000..35b52b5 --- /dev/null +++ b/public/organe/PO718030.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718030", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO718032.json b/public/organe/PO718032.json new file mode 100644 index 0000000..d9fce1a --- /dev/null +++ b/public/organe/PO718032.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718032", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO718034.json b/public/organe/PO718034.json new file mode 100644 index 0000000..84055e3 --- /dev/null +++ b/public/organe/PO718034.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718034", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO718036.json b/public/organe/PO718036.json new file mode 100644 index 0000000..4f8496f --- /dev/null +++ b/public/organe/PO718036.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718036", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718038.json b/public/organe/PO718038.json new file mode 100644 index 0000000..74f009f --- /dev/null +++ b/public/organe/PO718038.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718038", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO718040.json b/public/organe/PO718040.json new file mode 100644 index 0000000..96c82bc --- /dev/null +++ b/public/organe/PO718040.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718040", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718042.json b/public/organe/PO718042.json new file mode 100644 index 0000000..5ee379f --- /dev/null +++ b/public/organe/PO718042.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718042", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718044.json b/public/organe/PO718044.json new file mode 100644 index 0000000..b491d8b --- /dev/null +++ b/public/organe/PO718044.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718044", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718046.json b/public/organe/PO718046.json new file mode 100644 index 0000000..6dce124 --- /dev/null +++ b/public/organe/PO718046.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718046", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718048.json b/public/organe/PO718048.json new file mode 100644 index 0000000..93def69 --- /dev/null +++ b/public/organe/PO718048.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718048", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718050.json b/public/organe/PO718050.json new file mode 100644 index 0000000..6da6465 --- /dev/null +++ b/public/organe/PO718050.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718050", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718052.json b/public/organe/PO718052.json new file mode 100644 index 0000000..687a874 --- /dev/null +++ b/public/organe/PO718052.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718052", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718054.json b/public/organe/PO718054.json new file mode 100644 index 0000000..3a7888a --- /dev/null +++ b/public/organe/PO718054.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718054", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718056.json b/public/organe/PO718056.json new file mode 100644 index 0000000..aa0e4e2 --- /dev/null +++ b/public/organe/PO718056.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718056", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718058.json b/public/organe/PO718058.json new file mode 100644 index 0000000..7557660 --- /dev/null +++ b/public/organe/PO718058.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718058", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718060.json b/public/organe/PO718060.json new file mode 100644 index 0000000..8a1b45c --- /dev/null +++ b/public/organe/PO718060.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718060", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718062.json b/public/organe/PO718062.json new file mode 100644 index 0000000..9cbc778 --- /dev/null +++ b/public/organe/PO718062.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718062", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO718064.json b/public/organe/PO718064.json new file mode 100644 index 0000000..0e994f0 --- /dev/null +++ b/public/organe/PO718064.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718064", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO718066.json b/public/organe/PO718066.json new file mode 100644 index 0000000..3926045 --- /dev/null +++ b/public/organe/PO718066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718066", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO718068.json b/public/organe/PO718068.json new file mode 100644 index 0000000..f38f096 --- /dev/null +++ b/public/organe/PO718068.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718068", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO718070.json b/public/organe/PO718070.json new file mode 100644 index 0000000..550ded5 --- /dev/null +++ b/public/organe/PO718070.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718070", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO718072.json b/public/organe/PO718072.json new file mode 100644 index 0000000..0bb4c48 --- /dev/null +++ b/public/organe/PO718072.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718072", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO718074.json b/public/organe/PO718074.json new file mode 100644 index 0000000..cad8363 --- /dev/null +++ b/public/organe/PO718074.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718074", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718076.json b/public/organe/PO718076.json new file mode 100644 index 0000000..8f09a77 --- /dev/null +++ b/public/organe/PO718076.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718076", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718078.json b/public/organe/PO718078.json new file mode 100644 index 0000000..a181c12 --- /dev/null +++ b/public/organe/PO718078.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718078", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718080.json b/public/organe/PO718080.json new file mode 100644 index 0000000..4eb91a5 --- /dev/null +++ b/public/organe/PO718080.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718080", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718082.json b/public/organe/PO718082.json new file mode 100644 index 0000000..e5266dc --- /dev/null +++ b/public/organe/PO718082.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718082", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718084.json b/public/organe/PO718084.json new file mode 100644 index 0000000..29666a7 --- /dev/null +++ b/public/organe/PO718084.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718084", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718086.json b/public/organe/PO718086.json new file mode 100644 index 0000000..7411560 --- /dev/null +++ b/public/organe/PO718086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718086", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO718088.json b/public/organe/PO718088.json new file mode 100644 index 0000000..621f43c --- /dev/null +++ b/public/organe/PO718088.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718088", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO718090.json b/public/organe/PO718090.json new file mode 100644 index 0000000..3bc67a8 --- /dev/null +++ b/public/organe/PO718090.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718090", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO718092.json b/public/organe/PO718092.json new file mode 100644 index 0000000..db00b53 --- /dev/null +++ b/public/organe/PO718092.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718092", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO718094.json b/public/organe/PO718094.json new file mode 100644 index 0000000..279d55c --- /dev/null +++ b/public/organe/PO718094.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718094", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO718096.json b/public/organe/PO718096.json new file mode 100644 index 0000000..6fb7f8b --- /dev/null +++ b/public/organe/PO718096.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718096", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718098.json b/public/organe/PO718098.json new file mode 100644 index 0000000..d38f1bf --- /dev/null +++ b/public/organe/PO718098.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718098", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718100.json b/public/organe/PO718100.json new file mode 100644 index 0000000..afd05b9 --- /dev/null +++ b/public/organe/PO718100.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718100", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718102.json b/public/organe/PO718102.json new file mode 100644 index 0000000..9c9f7f6 --- /dev/null +++ b/public/organe/PO718102.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718102", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718104.json b/public/organe/PO718104.json new file mode 100644 index 0000000..2302464 --- /dev/null +++ b/public/organe/PO718104.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718104", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO718106.json b/public/organe/PO718106.json new file mode 100644 index 0000000..cf63bb6 --- /dev/null +++ b/public/organe/PO718106.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718106", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO718108.json b/public/organe/PO718108.json new file mode 100644 index 0000000..9937a1d --- /dev/null +++ b/public/organe/PO718108.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718108", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO718110.json b/public/organe/PO718110.json new file mode 100644 index 0000000..118ac03 --- /dev/null +++ b/public/organe/PO718110.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718110", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO718112.json b/public/organe/PO718112.json new file mode 100644 index 0000000..e072489 --- /dev/null +++ b/public/organe/PO718112.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718112", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO718114.json b/public/organe/PO718114.json new file mode 100644 index 0000000..220bcea --- /dev/null +++ b/public/organe/PO718114.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718114", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO718116.json b/public/organe/PO718116.json new file mode 100644 index 0000000..7c8d041 --- /dev/null +++ b/public/organe/PO718116.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718116", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO718118.json b/public/organe/PO718118.json new file mode 100644 index 0000000..01ec7d9 --- /dev/null +++ b/public/organe/PO718118.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718118", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718120.json b/public/organe/PO718120.json new file mode 100644 index 0000000..d5015aa --- /dev/null +++ b/public/organe/PO718120.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718120", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718122.json b/public/organe/PO718122.json new file mode 100644 index 0000000..62dd29a --- /dev/null +++ b/public/organe/PO718122.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718122", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718124.json b/public/organe/PO718124.json new file mode 100644 index 0000000..07ab7e8 --- /dev/null +++ b/public/organe/PO718124.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718124", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718126.json b/public/organe/PO718126.json new file mode 100644 index 0000000..f310615 --- /dev/null +++ b/public/organe/PO718126.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718126", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718128.json b/public/organe/PO718128.json new file mode 100644 index 0000000..5527976 --- /dev/null +++ b/public/organe/PO718128.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718128", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718130.json b/public/organe/PO718130.json new file mode 100644 index 0000000..f3edc27 --- /dev/null +++ b/public/organe/PO718130.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718130", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718132.json b/public/organe/PO718132.json new file mode 100644 index 0000000..e94fcfe --- /dev/null +++ b/public/organe/PO718132.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718132", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718134.json b/public/organe/PO718134.json new file mode 100644 index 0000000..0b7a102 --- /dev/null +++ b/public/organe/PO718134.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718134", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718136.json b/public/organe/PO718136.json new file mode 100644 index 0000000..d0536b7 --- /dev/null +++ b/public/organe/PO718136.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718136", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718138.json b/public/organe/PO718138.json new file mode 100644 index 0000000..b0d276a --- /dev/null +++ b/public/organe/PO718138.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718138", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718140.json b/public/organe/PO718140.json new file mode 100644 index 0000000..0ae8821 --- /dev/null +++ b/public/organe/PO718140.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718140", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718142.json b/public/organe/PO718142.json new file mode 100644 index 0000000..112a908 --- /dev/null +++ b/public/organe/PO718142.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718142", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718144.json b/public/organe/PO718144.json new file mode 100644 index 0000000..5713210 --- /dev/null +++ b/public/organe/PO718144.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718144", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718146.json b/public/organe/PO718146.json new file mode 100644 index 0000000..9b73c19 --- /dev/null +++ b/public/organe/PO718146.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718146", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO718148.json b/public/organe/PO718148.json new file mode 100644 index 0000000..3819dca --- /dev/null +++ b/public/organe/PO718148.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718148", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718150.json b/public/organe/PO718150.json new file mode 100644 index 0000000..8dc9176 --- /dev/null +++ b/public/organe/PO718150.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718150", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718152.json b/public/organe/PO718152.json new file mode 100644 index 0000000..03a338b --- /dev/null +++ b/public/organe/PO718152.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718152", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718154.json b/public/organe/PO718154.json new file mode 100644 index 0000000..20e58db --- /dev/null +++ b/public/organe/PO718154.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718154", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718156.json b/public/organe/PO718156.json new file mode 100644 index 0000000..0733132 --- /dev/null +++ b/public/organe/PO718156.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718156", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO718158.json b/public/organe/PO718158.json new file mode 100644 index 0000000..62f9d91 --- /dev/null +++ b/public/organe/PO718158.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718158", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO718160.json b/public/organe/PO718160.json new file mode 100644 index 0000000..ced96de --- /dev/null +++ b/public/organe/PO718160.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718160", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO718162.json b/public/organe/PO718162.json new file mode 100644 index 0000000..fcae1fa --- /dev/null +++ b/public/organe/PO718162.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718162", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718164.json b/public/organe/PO718164.json new file mode 100644 index 0000000..c481804 --- /dev/null +++ b/public/organe/PO718164.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718164", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718166.json b/public/organe/PO718166.json new file mode 100644 index 0000000..9096587 --- /dev/null +++ b/public/organe/PO718166.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718166", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718168.json b/public/organe/PO718168.json new file mode 100644 index 0000000..f0bea75 --- /dev/null +++ b/public/organe/PO718168.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718168", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718170.json b/public/organe/PO718170.json new file mode 100644 index 0000000..f12b488 --- /dev/null +++ b/public/organe/PO718170.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718170", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718172.json b/public/organe/PO718172.json new file mode 100644 index 0000000..9b5f1ef --- /dev/null +++ b/public/organe/PO718172.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718172", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718174.json b/public/organe/PO718174.json new file mode 100644 index 0000000..9bc50f0 --- /dev/null +++ b/public/organe/PO718174.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718174", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718176.json b/public/organe/PO718176.json new file mode 100644 index 0000000..0c4f3d8 --- /dev/null +++ b/public/organe/PO718176.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718176", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO718178.json b/public/organe/PO718178.json new file mode 100644 index 0000000..b73affd --- /dev/null +++ b/public/organe/PO718178.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718178", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718180.json b/public/organe/PO718180.json new file mode 100644 index 0000000..d12305b --- /dev/null +++ b/public/organe/PO718180.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718180", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718182.json b/public/organe/PO718182.json new file mode 100644 index 0000000..86252fe --- /dev/null +++ b/public/organe/PO718182.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718182", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718184.json b/public/organe/PO718184.json new file mode 100644 index 0000000..25844e0 --- /dev/null +++ b/public/organe/PO718184.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718184", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718186.json b/public/organe/PO718186.json new file mode 100644 index 0000000..f248637 --- /dev/null +++ b/public/organe/PO718186.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718186", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718188.json b/public/organe/PO718188.json new file mode 100644 index 0000000..05c7a94 --- /dev/null +++ b/public/organe/PO718188.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718188", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718190.json b/public/organe/PO718190.json new file mode 100644 index 0000000..30f4abc --- /dev/null +++ b/public/organe/PO718190.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718190", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718192.json b/public/organe/PO718192.json new file mode 100644 index 0000000..b2404c6 --- /dev/null +++ b/public/organe/PO718192.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718192", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718194.json b/public/organe/PO718194.json new file mode 100644 index 0000000..53fb822 --- /dev/null +++ b/public/organe/PO718194.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718194", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO718196.json b/public/organe/PO718196.json new file mode 100644 index 0000000..c7ac10a --- /dev/null +++ b/public/organe/PO718196.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718196", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO718198.json b/public/organe/PO718198.json new file mode 100644 index 0000000..63b6f45 --- /dev/null +++ b/public/organe/PO718198.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718198", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO718200.json b/public/organe/PO718200.json new file mode 100644 index 0000000..c6adefc --- /dev/null +++ b/public/organe/PO718200.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718200", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO718202.json b/public/organe/PO718202.json new file mode 100644 index 0000000..7d98646 --- /dev/null +++ b/public/organe/PO718202.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718202", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO718204.json b/public/organe/PO718204.json new file mode 100644 index 0000000..9736181 --- /dev/null +++ b/public/organe/PO718204.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718204", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO718206.json b/public/organe/PO718206.json new file mode 100644 index 0000000..a3cc3f6 --- /dev/null +++ b/public/organe/PO718206.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718206", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO718208.json b/public/organe/PO718208.json new file mode 100644 index 0000000..8cc0d4e --- /dev/null +++ b/public/organe/PO718208.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718208", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718210.json b/public/organe/PO718210.json new file mode 100644 index 0000000..fe7913f --- /dev/null +++ b/public/organe/PO718210.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718210", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718212.json b/public/organe/PO718212.json new file mode 100644 index 0000000..5132bd3 --- /dev/null +++ b/public/organe/PO718212.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718212", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718214.json b/public/organe/PO718214.json new file mode 100644 index 0000000..9081c50 --- /dev/null +++ b/public/organe/PO718214.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718214", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718216.json b/public/organe/PO718216.json new file mode 100644 index 0000000..54100f2 --- /dev/null +++ b/public/organe/PO718216.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718216", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718218.json b/public/organe/PO718218.json new file mode 100644 index 0000000..6279944 --- /dev/null +++ b/public/organe/PO718218.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718218", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718220.json b/public/organe/PO718220.json new file mode 100644 index 0000000..c0f7dba --- /dev/null +++ b/public/organe/PO718220.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718220", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718222.json b/public/organe/PO718222.json new file mode 100644 index 0000000..235dbfb --- /dev/null +++ b/public/organe/PO718222.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718222", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718224.json b/public/organe/PO718224.json new file mode 100644 index 0000000..6340951 --- /dev/null +++ b/public/organe/PO718224.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718224", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718226.json b/public/organe/PO718226.json new file mode 100644 index 0000000..3ab57fe --- /dev/null +++ b/public/organe/PO718226.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718226", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718228.json b/public/organe/PO718228.json new file mode 100644 index 0000000..a9016f2 --- /dev/null +++ b/public/organe/PO718228.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718228", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718230.json b/public/organe/PO718230.json new file mode 100644 index 0000000..90219dc --- /dev/null +++ b/public/organe/PO718230.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718230", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718232.json b/public/organe/PO718232.json new file mode 100644 index 0000000..bfdd42f --- /dev/null +++ b/public/organe/PO718232.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718232", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718234.json b/public/organe/PO718234.json new file mode 100644 index 0000000..0d9a9c8 --- /dev/null +++ b/public/organe/PO718234.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718234", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718236.json b/public/organe/PO718236.json new file mode 100644 index 0000000..d517f63 --- /dev/null +++ b/public/organe/PO718236.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718236", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718238.json b/public/organe/PO718238.json new file mode 100644 index 0000000..2f52b07 --- /dev/null +++ b/public/organe/PO718238.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718238", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718240.json b/public/organe/PO718240.json new file mode 100644 index 0000000..5f2eaf2 --- /dev/null +++ b/public/organe/PO718240.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718240", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718242.json b/public/organe/PO718242.json new file mode 100644 index 0000000..349cf0e --- /dev/null +++ b/public/organe/PO718242.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718242", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718244.json b/public/organe/PO718244.json new file mode 100644 index 0000000..725bac1 --- /dev/null +++ b/public/organe/PO718244.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718244", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718246.json b/public/organe/PO718246.json new file mode 100644 index 0000000..32bcad9 --- /dev/null +++ b/public/organe/PO718246.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718246", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718248.json b/public/organe/PO718248.json new file mode 100644 index 0000000..80e70be --- /dev/null +++ b/public/organe/PO718248.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718248", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718250.json b/public/organe/PO718250.json new file mode 100644 index 0000000..38a6e31 --- /dev/null +++ b/public/organe/PO718250.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718250", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718252.json b/public/organe/PO718252.json new file mode 100644 index 0000000..46660ac --- /dev/null +++ b/public/organe/PO718252.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718252", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718254.json b/public/organe/PO718254.json new file mode 100644 index 0000000..7aa5370 --- /dev/null +++ b/public/organe/PO718254.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718254", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718256.json b/public/organe/PO718256.json new file mode 100644 index 0000000..d425752 --- /dev/null +++ b/public/organe/PO718256.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718256", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO718258.json b/public/organe/PO718258.json new file mode 100644 index 0000000..ebb4cd8 --- /dev/null +++ b/public/organe/PO718258.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718258", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718260.json b/public/organe/PO718260.json new file mode 100644 index 0000000..11ef092 --- /dev/null +++ b/public/organe/PO718260.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718260", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718262.json b/public/organe/PO718262.json new file mode 100644 index 0000000..d59ae2c --- /dev/null +++ b/public/organe/PO718262.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718262", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO718264.json b/public/organe/PO718264.json new file mode 100644 index 0000000..9febe10 --- /dev/null +++ b/public/organe/PO718264.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718264", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718266.json b/public/organe/PO718266.json new file mode 100644 index 0000000..12d75da --- /dev/null +++ b/public/organe/PO718266.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718266", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718268.json b/public/organe/PO718268.json new file mode 100644 index 0000000..c2c815a --- /dev/null +++ b/public/organe/PO718268.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718268", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718270.json b/public/organe/PO718270.json new file mode 100644 index 0000000..e0c5b56 --- /dev/null +++ b/public/organe/PO718270.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718270", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718272.json b/public/organe/PO718272.json new file mode 100644 index 0000000..8db1c0b --- /dev/null +++ b/public/organe/PO718272.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718272", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718274.json b/public/organe/PO718274.json new file mode 100644 index 0000000..c470c94 --- /dev/null +++ b/public/organe/PO718274.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718274", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718276.json b/public/organe/PO718276.json new file mode 100644 index 0000000..fd56cf2 --- /dev/null +++ b/public/organe/PO718276.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718276", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718278.json b/public/organe/PO718278.json new file mode 100644 index 0000000..a169933 --- /dev/null +++ b/public/organe/PO718278.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718278", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718280.json b/public/organe/PO718280.json new file mode 100644 index 0000000..497de61 --- /dev/null +++ b/public/organe/PO718280.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718280", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718282.json b/public/organe/PO718282.json new file mode 100644 index 0000000..9f0f58e --- /dev/null +++ b/public/organe/PO718282.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718282", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718284.json b/public/organe/PO718284.json new file mode 100644 index 0000000..7210d9b --- /dev/null +++ b/public/organe/PO718284.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718284", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718286.json b/public/organe/PO718286.json new file mode 100644 index 0000000..24e68c4 --- /dev/null +++ b/public/organe/PO718286.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718286", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718288.json b/public/organe/PO718288.json new file mode 100644 index 0000000..aa266ce --- /dev/null +++ b/public/organe/PO718288.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718288", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718290.json b/public/organe/PO718290.json new file mode 100644 index 0000000..c264bc2 --- /dev/null +++ b/public/organe/PO718290.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718290", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718292.json b/public/organe/PO718292.json new file mode 100644 index 0000000..1c9a6d8 --- /dev/null +++ b/public/organe/PO718292.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718292", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718294.json b/public/organe/PO718294.json new file mode 100644 index 0000000..598b0d1 --- /dev/null +++ b/public/organe/PO718294.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718294", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO718296.json b/public/organe/PO718296.json new file mode 100644 index 0000000..1b08fe1 --- /dev/null +++ b/public/organe/PO718296.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718296", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO718298.json b/public/organe/PO718298.json new file mode 100644 index 0000000..9359874 --- /dev/null +++ b/public/organe/PO718298.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718298", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO718300.json b/public/organe/PO718300.json new file mode 100644 index 0000000..62dc5d8 --- /dev/null +++ b/public/organe/PO718300.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718300", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO718302.json b/public/organe/PO718302.json new file mode 100644 index 0000000..8b3c536 --- /dev/null +++ b/public/organe/PO718302.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718302", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO718304.json b/public/organe/PO718304.json new file mode 100644 index 0000000..26ec9bb --- /dev/null +++ b/public/organe/PO718304.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718304", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO718306.json b/public/organe/PO718306.json new file mode 100644 index 0000000..bc36994 --- /dev/null +++ b/public/organe/PO718306.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718306", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718308.json b/public/organe/PO718308.json new file mode 100644 index 0000000..14ad8c4 --- /dev/null +++ b/public/organe/PO718308.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718308", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718310.json b/public/organe/PO718310.json new file mode 100644 index 0000000..40003bd --- /dev/null +++ b/public/organe/PO718310.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718310", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718312.json b/public/organe/PO718312.json new file mode 100644 index 0000000..6441263 --- /dev/null +++ b/public/organe/PO718312.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718312", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718314.json b/public/organe/PO718314.json new file mode 100644 index 0000000..8d73958 --- /dev/null +++ b/public/organe/PO718314.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718314", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718316.json b/public/organe/PO718316.json new file mode 100644 index 0000000..30de810 --- /dev/null +++ b/public/organe/PO718316.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718316", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO718318.json b/public/organe/PO718318.json new file mode 100644 index 0000000..1ac44c1 --- /dev/null +++ b/public/organe/PO718318.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718318", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO718320.json b/public/organe/PO718320.json new file mode 100644 index 0000000..a660078 --- /dev/null +++ b/public/organe/PO718320.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718320", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO718322.json b/public/organe/PO718322.json new file mode 100644 index 0000000..d272d94 --- /dev/null +++ b/public/organe/PO718322.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718322", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO718324.json b/public/organe/PO718324.json new file mode 100644 index 0000000..53f6247 --- /dev/null +++ b/public/organe/PO718324.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718324", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO718326.json b/public/organe/PO718326.json new file mode 100644 index 0000000..610360a --- /dev/null +++ b/public/organe/PO718326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718326", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO718328.json b/public/organe/PO718328.json new file mode 100644 index 0000000..44b9a7e --- /dev/null +++ b/public/organe/PO718328.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718328", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO718330.json b/public/organe/PO718330.json new file mode 100644 index 0000000..9aa6f55 --- /dev/null +++ b/public/organe/PO718330.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718330", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO718332.json b/public/organe/PO718332.json new file mode 100644 index 0000000..b83292c --- /dev/null +++ b/public/organe/PO718332.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718332", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO718334.json b/public/organe/PO718334.json new file mode 100644 index 0000000..b6aac1b --- /dev/null +++ b/public/organe/PO718334.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718334", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO718336.json b/public/organe/PO718336.json new file mode 100644 index 0000000..4a98f6e --- /dev/null +++ b/public/organe/PO718336.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718336", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO718338.json b/public/organe/PO718338.json new file mode 100644 index 0000000..854d8bc --- /dev/null +++ b/public/organe/PO718338.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718338", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO718340.json b/public/organe/PO718340.json new file mode 100644 index 0000000..50e7011 --- /dev/null +++ b/public/organe/PO718340.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718340", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO718342.json b/public/organe/PO718342.json new file mode 100644 index 0000000..12fff04 --- /dev/null +++ b/public/organe/PO718342.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718342", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO718344.json b/public/organe/PO718344.json new file mode 100644 index 0000000..ec4b5f3 --- /dev/null +++ b/public/organe/PO718344.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718344", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718346.json b/public/organe/PO718346.json new file mode 100644 index 0000000..79a76c9 --- /dev/null +++ b/public/organe/PO718346.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718346", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718348.json b/public/organe/PO718348.json new file mode 100644 index 0000000..b48646a --- /dev/null +++ b/public/organe/PO718348.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718348", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO718350.json b/public/organe/PO718350.json new file mode 100644 index 0000000..a030e6d --- /dev/null +++ b/public/organe/PO718350.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718350", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO718352.json b/public/organe/PO718352.json new file mode 100644 index 0000000..dd9080e --- /dev/null +++ b/public/organe/PO718352.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718352", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO718354.json b/public/organe/PO718354.json new file mode 100644 index 0000000..6911cae --- /dev/null +++ b/public/organe/PO718354.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718354", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO718356.json b/public/organe/PO718356.json new file mode 100644 index 0000000..247f0a8 --- /dev/null +++ b/public/organe/PO718356.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718356", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO718358.json b/public/organe/PO718358.json new file mode 100644 index 0000000..476ce69 --- /dev/null +++ b/public/organe/PO718358.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718358", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO718360.json b/public/organe/PO718360.json new file mode 100644 index 0000000..fd43ff3 --- /dev/null +++ b/public/organe/PO718360.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718360", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO718362.json b/public/organe/PO718362.json new file mode 100644 index 0000000..a87d065 --- /dev/null +++ b/public/organe/PO718362.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718362", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO718364.json b/public/organe/PO718364.json new file mode 100644 index 0000000..a9dc6d1 --- /dev/null +++ b/public/organe/PO718364.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718364", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO718366.json b/public/organe/PO718366.json new file mode 100644 index 0000000..b64ad4f --- /dev/null +++ b/public/organe/PO718366.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718366", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO718368.json b/public/organe/PO718368.json new file mode 100644 index 0000000..b442e5d --- /dev/null +++ b/public/organe/PO718368.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718368", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO718370.json b/public/organe/PO718370.json new file mode 100644 index 0000000..3b7847b --- /dev/null +++ b/public/organe/PO718370.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718370", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO718372.json b/public/organe/PO718372.json new file mode 100644 index 0000000..54b8b56 --- /dev/null +++ b/public/organe/PO718372.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718372", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO718374.json b/public/organe/PO718374.json new file mode 100644 index 0000000..985a792 --- /dev/null +++ b/public/organe/PO718374.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718374", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO718376.json b/public/organe/PO718376.json new file mode 100644 index 0000000..2f8e06d --- /dev/null +++ b/public/organe/PO718376.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718376", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO718378.json b/public/organe/PO718378.json new file mode 100644 index 0000000..dc108a8 --- /dev/null +++ b/public/organe/PO718378.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718378", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO718380.json b/public/organe/PO718380.json new file mode 100644 index 0000000..aafedc1 --- /dev/null +++ b/public/organe/PO718380.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718380", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO718382.json b/public/organe/PO718382.json new file mode 100644 index 0000000..d593af1 --- /dev/null +++ b/public/organe/PO718382.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718382", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718384.json b/public/organe/PO718384.json new file mode 100644 index 0000000..10b8ddb --- /dev/null +++ b/public/organe/PO718384.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718384", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718386.json b/public/organe/PO718386.json new file mode 100644 index 0000000..e0b0908 --- /dev/null +++ b/public/organe/PO718386.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718386", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718388.json b/public/organe/PO718388.json new file mode 100644 index 0000000..7e0b795 --- /dev/null +++ b/public/organe/PO718388.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718388", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718390.json b/public/organe/PO718390.json new file mode 100644 index 0000000..8b7d9ac --- /dev/null +++ b/public/organe/PO718390.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718390", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718392.json b/public/organe/PO718392.json new file mode 100644 index 0000000..16e1ca5 --- /dev/null +++ b/public/organe/PO718392.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718392", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718394.json b/public/organe/PO718394.json new file mode 100644 index 0000000..2877f88 --- /dev/null +++ b/public/organe/PO718394.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718394", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718396.json b/public/organe/PO718396.json new file mode 100644 index 0000000..255d65c --- /dev/null +++ b/public/organe/PO718396.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718396", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718398.json b/public/organe/PO718398.json new file mode 100644 index 0000000..4a1553a --- /dev/null +++ b/public/organe/PO718398.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718398", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO718400.json b/public/organe/PO718400.json new file mode 100644 index 0000000..40ddeac --- /dev/null +++ b/public/organe/PO718400.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718400", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO718402.json b/public/organe/PO718402.json new file mode 100644 index 0000000..dd51ac9 --- /dev/null +++ b/public/organe/PO718402.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718402", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718404.json b/public/organe/PO718404.json new file mode 100644 index 0000000..867dd10 --- /dev/null +++ b/public/organe/PO718404.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718404", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718406.json b/public/organe/PO718406.json new file mode 100644 index 0000000..3949d84 --- /dev/null +++ b/public/organe/PO718406.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718406", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO718408.json b/public/organe/PO718408.json new file mode 100644 index 0000000..3f8e2ef --- /dev/null +++ b/public/organe/PO718408.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718408", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718410.json b/public/organe/PO718410.json new file mode 100644 index 0000000..ce8df98 --- /dev/null +++ b/public/organe/PO718410.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718410", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718412.json b/public/organe/PO718412.json new file mode 100644 index 0000000..e16e196 --- /dev/null +++ b/public/organe/PO718412.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718412", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO718414.json b/public/organe/PO718414.json new file mode 100644 index 0000000..9aaed74 --- /dev/null +++ b/public/organe/PO718414.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718414", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718416.json b/public/organe/PO718416.json new file mode 100644 index 0000000..ef7a74f --- /dev/null +++ b/public/organe/PO718416.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718416", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718418.json b/public/organe/PO718418.json new file mode 100644 index 0000000..b2dc54f --- /dev/null +++ b/public/organe/PO718418.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718418", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718420.json b/public/organe/PO718420.json new file mode 100644 index 0000000..9e9fce3 --- /dev/null +++ b/public/organe/PO718420.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718420", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718422.json b/public/organe/PO718422.json new file mode 100644 index 0000000..1525c67 --- /dev/null +++ b/public/organe/PO718422.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718422", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718424.json b/public/organe/PO718424.json new file mode 100644 index 0000000..121ec96 --- /dev/null +++ b/public/organe/PO718424.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718424", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718426.json b/public/organe/PO718426.json new file mode 100644 index 0000000..79c7879 --- /dev/null +++ b/public/organe/PO718426.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718426", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718428.json b/public/organe/PO718428.json new file mode 100644 index 0000000..af0794b --- /dev/null +++ b/public/organe/PO718428.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718428", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718430.json b/public/organe/PO718430.json new file mode 100644 index 0000000..7e6c54c --- /dev/null +++ b/public/organe/PO718430.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718430", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718432.json b/public/organe/PO718432.json new file mode 100644 index 0000000..ea88c74 --- /dev/null +++ b/public/organe/PO718432.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718432", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718434.json b/public/organe/PO718434.json new file mode 100644 index 0000000..036f546 --- /dev/null +++ b/public/organe/PO718434.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718434", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718436.json b/public/organe/PO718436.json new file mode 100644 index 0000000..a2d8535 --- /dev/null +++ b/public/organe/PO718436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718436", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718438.json b/public/organe/PO718438.json new file mode 100644 index 0000000..8895de4 --- /dev/null +++ b/public/organe/PO718438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718438", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718440.json b/public/organe/PO718440.json new file mode 100644 index 0000000..c1c9e5d --- /dev/null +++ b/public/organe/PO718440.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718440", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718442.json b/public/organe/PO718442.json new file mode 100644 index 0000000..887ff90 --- /dev/null +++ b/public/organe/PO718442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718442", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718444.json b/public/organe/PO718444.json new file mode 100644 index 0000000..56a1b13 --- /dev/null +++ b/public/organe/PO718444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718444", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO718446.json b/public/organe/PO718446.json new file mode 100644 index 0000000..3d90adf --- /dev/null +++ b/public/organe/PO718446.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718446", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718448.json b/public/organe/PO718448.json new file mode 100644 index 0000000..72ad9fa --- /dev/null +++ b/public/organe/PO718448.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718448", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718450.json b/public/organe/PO718450.json new file mode 100644 index 0000000..df8cdd1 --- /dev/null +++ b/public/organe/PO718450.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718450", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718452.json b/public/organe/PO718452.json new file mode 100644 index 0000000..e6016f1 --- /dev/null +++ b/public/organe/PO718452.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718452", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718454.json b/public/organe/PO718454.json new file mode 100644 index 0000000..a443bac --- /dev/null +++ b/public/organe/PO718454.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718454", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718456.json b/public/organe/PO718456.json new file mode 100644 index 0000000..cb5867d --- /dev/null +++ b/public/organe/PO718456.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718456", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718458.json b/public/organe/PO718458.json new file mode 100644 index 0000000..84d7054 --- /dev/null +++ b/public/organe/PO718458.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718458", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718460.json b/public/organe/PO718460.json new file mode 100644 index 0000000..de35903 --- /dev/null +++ b/public/organe/PO718460.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718460", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718462.json b/public/organe/PO718462.json new file mode 100644 index 0000000..1cee498 --- /dev/null +++ b/public/organe/PO718462.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718462", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718464.json b/public/organe/PO718464.json new file mode 100644 index 0000000..de59ee9 --- /dev/null +++ b/public/organe/PO718464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718464", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718466.json b/public/organe/PO718466.json new file mode 100644 index 0000000..ca16566 --- /dev/null +++ b/public/organe/PO718466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718466", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718468.json b/public/organe/PO718468.json new file mode 100644 index 0000000..7542d50 --- /dev/null +++ b/public/organe/PO718468.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718468", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718470.json b/public/organe/PO718470.json new file mode 100644 index 0000000..c4e1af2 --- /dev/null +++ b/public/organe/PO718470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718470", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718472.json b/public/organe/PO718472.json new file mode 100644 index 0000000..d1d45ec --- /dev/null +++ b/public/organe/PO718472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718472", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718474.json b/public/organe/PO718474.json new file mode 100644 index 0000000..b2dd06a --- /dev/null +++ b/public/organe/PO718474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718474", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO718476.json b/public/organe/PO718476.json new file mode 100644 index 0000000..999c274 --- /dev/null +++ b/public/organe/PO718476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718476", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718478.json b/public/organe/PO718478.json new file mode 100644 index 0000000..17bbaa3 --- /dev/null +++ b/public/organe/PO718478.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718478", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718480.json b/public/organe/PO718480.json new file mode 100644 index 0000000..55a7687 --- /dev/null +++ b/public/organe/PO718480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718480", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718482.json b/public/organe/PO718482.json new file mode 100644 index 0000000..0e55548 --- /dev/null +++ b/public/organe/PO718482.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718482", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718484.json b/public/organe/PO718484.json new file mode 100644 index 0000000..d4dbdc1 --- /dev/null +++ b/public/organe/PO718484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718484", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718486.json b/public/organe/PO718486.json new file mode 100644 index 0000000..e6c25af --- /dev/null +++ b/public/organe/PO718486.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718486", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718488.json b/public/organe/PO718488.json new file mode 100644 index 0000000..8cec815 --- /dev/null +++ b/public/organe/PO718488.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718488", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718490.json b/public/organe/PO718490.json new file mode 100644 index 0000000..28b71ec --- /dev/null +++ b/public/organe/PO718490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718490", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718492.json b/public/organe/PO718492.json new file mode 100644 index 0000000..9eefa21 --- /dev/null +++ b/public/organe/PO718492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718492", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718494.json b/public/organe/PO718494.json new file mode 100644 index 0000000..23adbbe --- /dev/null +++ b/public/organe/PO718494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718494", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718496.json b/public/organe/PO718496.json new file mode 100644 index 0000000..eb2b4d6 --- /dev/null +++ b/public/organe/PO718496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718496", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718498.json b/public/organe/PO718498.json new file mode 100644 index 0000000..efdd162 --- /dev/null +++ b/public/organe/PO718498.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718498", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718500.json b/public/organe/PO718500.json new file mode 100644 index 0000000..ca0db55 --- /dev/null +++ b/public/organe/PO718500.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718500", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718502.json b/public/organe/PO718502.json new file mode 100644 index 0000000..8aa52c1 --- /dev/null +++ b/public/organe/PO718502.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718502", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718504.json b/public/organe/PO718504.json new file mode 100644 index 0000000..56638d5 --- /dev/null +++ b/public/organe/PO718504.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718504", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718506.json b/public/organe/PO718506.json new file mode 100644 index 0000000..e2f8918 --- /dev/null +++ b/public/organe/PO718506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718506", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO718508.json b/public/organe/PO718508.json new file mode 100644 index 0000000..2d39d0a --- /dev/null +++ b/public/organe/PO718508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718508", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO718510.json b/public/organe/PO718510.json new file mode 100644 index 0000000..68e6030 --- /dev/null +++ b/public/organe/PO718510.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718510", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO718512.json b/public/organe/PO718512.json new file mode 100644 index 0000000..97dcc1f --- /dev/null +++ b/public/organe/PO718512.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718512", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO718514.json b/public/organe/PO718514.json new file mode 100644 index 0000000..5df115b --- /dev/null +++ b/public/organe/PO718514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718514", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO718516.json b/public/organe/PO718516.json new file mode 100644 index 0000000..3c23b55 --- /dev/null +++ b/public/organe/PO718516.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718516", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO718518.json b/public/organe/PO718518.json new file mode 100644 index 0000000..c8fbc9c --- /dev/null +++ b/public/organe/PO718518.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718518", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO718520.json b/public/organe/PO718520.json new file mode 100644 index 0000000..0ee16fe --- /dev/null +++ b/public/organe/PO718520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718520", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO718522.json b/public/organe/PO718522.json new file mode 100644 index 0000000..56815af --- /dev/null +++ b/public/organe/PO718522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718522", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO718524.json b/public/organe/PO718524.json new file mode 100644 index 0000000..bf828f1 --- /dev/null +++ b/public/organe/PO718524.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718524", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO718526.json b/public/organe/PO718526.json new file mode 100644 index 0000000..cc7c2e7 --- /dev/null +++ b/public/organe/PO718526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718526", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO718528.json b/public/organe/PO718528.json new file mode 100644 index 0000000..60f0a09 --- /dev/null +++ b/public/organe/PO718528.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718528", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO718530.json b/public/organe/PO718530.json new file mode 100644 index 0000000..89e1e18 --- /dev/null +++ b/public/organe/PO718530.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718530", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO718532.json b/public/organe/PO718532.json new file mode 100644 index 0000000..ebf3364 --- /dev/null +++ b/public/organe/PO718532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718532", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO718534.json b/public/organe/PO718534.json new file mode 100644 index 0000000..a3f0ec3 --- /dev/null +++ b/public/organe/PO718534.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718534", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO718536.json b/public/organe/PO718536.json new file mode 100644 index 0000000..b683cff --- /dev/null +++ b/public/organe/PO718536.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718536", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO718538.json b/public/organe/PO718538.json new file mode 100644 index 0000000..049911c --- /dev/null +++ b/public/organe/PO718538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718538", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718540.json b/public/organe/PO718540.json new file mode 100644 index 0000000..4417c28 --- /dev/null +++ b/public/organe/PO718540.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718540", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO718542.json b/public/organe/PO718542.json new file mode 100644 index 0000000..b5634a8 --- /dev/null +++ b/public/organe/PO718542.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718542", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO718544.json b/public/organe/PO718544.json new file mode 100644 index 0000000..f41c42f --- /dev/null +++ b/public/organe/PO718544.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718544", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO718546.json b/public/organe/PO718546.json new file mode 100644 index 0000000..9404d50 --- /dev/null +++ b/public/organe/PO718546.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718546", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO718548.json b/public/organe/PO718548.json new file mode 100644 index 0000000..e460a3b --- /dev/null +++ b/public/organe/PO718548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718548", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO718550.json b/public/organe/PO718550.json new file mode 100644 index 0000000..43acba7 --- /dev/null +++ b/public/organe/PO718550.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718550", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO718552.json b/public/organe/PO718552.json new file mode 100644 index 0000000..bb8b7ad --- /dev/null +++ b/public/organe/PO718552.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718552", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO718554.json b/public/organe/PO718554.json new file mode 100644 index 0000000..75ebc8c --- /dev/null +++ b/public/organe/PO718554.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718554", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO718556.json b/public/organe/PO718556.json new file mode 100644 index 0000000..8b8f38b --- /dev/null +++ b/public/organe/PO718556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718556", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "O", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO718558.json b/public/organe/PO718558.json new file mode 100644 index 0000000..b43a816 --- /dev/null +++ b/public/organe/PO718558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718558", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO718560.json b/public/organe/PO718560.json new file mode 100644 index 0000000..c9fced4 --- /dev/null +++ b/public/organe/PO718560.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718560", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO718562.json b/public/organe/PO718562.json new file mode 100644 index 0000000..507c521 --- /dev/null +++ b/public/organe/PO718562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718562", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO718564.json b/public/organe/PO718564.json new file mode 100644 index 0000000..000db8a --- /dev/null +++ b/public/organe/PO718564.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718564", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO718566.json b/public/organe/PO718566.json new file mode 100644 index 0000000..2685b53 --- /dev/null +++ b/public/organe/PO718566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718566", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO718568.json b/public/organe/PO718568.json new file mode 100644 index 0000000..0a05944 --- /dev/null +++ b/public/organe/PO718568.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718568", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO718570.json b/public/organe/PO718570.json new file mode 100644 index 0000000..61c71c9 --- /dev/null +++ b/public/organe/PO718570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718570", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "O", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO718572.json b/public/organe/PO718572.json new file mode 100644 index 0000000..5f63550 --- /dev/null +++ b/public/organe/PO718572.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718572", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO718574.json b/public/organe/PO718574.json new file mode 100644 index 0000000..f0f539d --- /dev/null +++ b/public/organe/PO718574.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718574", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO718576.json b/public/organe/PO718576.json new file mode 100644 index 0000000..5dafc3d --- /dev/null +++ b/public/organe/PO718576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718576", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Barth\u00e9l\u00e9my et Saint-Martin", "libelleEdition": "de la circonscription", "libelleAbrege": "977 Saint-Barth\u00e9lemy et Saint-Martin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Barth\u00e9lemy et Saint-Martin"}, "departement": {"codeNatureDep": "T", "code": "977", "libelle": "Saint-Barth\u00e9lemy et Saint-Martin"}}}} \ No newline at end of file diff --git a/public/organe/PO718578.json b/public/organe/PO718578.json new file mode 100644 index 0000000..448a54d --- /dev/null +++ b/public/organe/PO718578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718578", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "2", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718580.json b/public/organe/PO718580.json new file mode 100644 index 0000000..fdf3683 --- /dev/null +++ b/public/organe/PO718580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718580", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "1", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718582.json b/public/organe/PO718582.json new file mode 100644 index 0000000..1b19959 --- /dev/null +++ b/public/organe/PO718582.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718582", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718584.json b/public/organe/PO718584.json new file mode 100644 index 0000000..d79afd3 --- /dev/null +++ b/public/organe/PO718584.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718584", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "3", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718586.json b/public/organe/PO718586.json new file mode 100644 index 0000000..b48ff6c --- /dev/null +++ b/public/organe/PO718586.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718586", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718588.json b/public/organe/PO718588.json new file mode 100644 index 0000000..e3f0c6d --- /dev/null +++ b/public/organe/PO718588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718588", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO718590.json b/public/organe/PO718590.json new file mode 100644 index 0000000..8ac6a40 --- /dev/null +++ b/public/organe/PO718590.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718590", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718592.json b/public/organe/PO718592.json new file mode 100644 index 0000000..34d7aba --- /dev/null +++ b/public/organe/PO718592.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718592", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO718594.json b/public/organe/PO718594.json new file mode 100644 index 0000000..0c66fcf --- /dev/null +++ b/public/organe/PO718594.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718594", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO718596.json b/public/organe/PO718596.json new file mode 100644 index 0000000..c28616d --- /dev/null +++ b/public/organe/PO718596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718596", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO718598.json b/public/organe/PO718598.json new file mode 100644 index 0000000..b6e317f --- /dev/null +++ b/public/organe/PO718598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718598", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO718600.json b/public/organe/PO718600.json new file mode 100644 index 0000000..d921737 --- /dev/null +++ b/public/organe/PO718600.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718600", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO718602.json b/public/organe/PO718602.json new file mode 100644 index 0000000..e1bee8a --- /dev/null +++ b/public/organe/PO718602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718602", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "6", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718604.json b/public/organe/PO718604.json new file mode 100644 index 0000000..f1e0898 --- /dev/null +++ b/public/organe/PO718604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718604", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "5", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718606.json b/public/organe/PO718606.json new file mode 100644 index 0000000..522adf2 --- /dev/null +++ b/public/organe/PO718606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718606", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "8", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718608.json b/public/organe/PO718608.json new file mode 100644 index 0000000..39bb0dc --- /dev/null +++ b/public/organe/PO718608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718608", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "7", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718610.json b/public/organe/PO718610.json new file mode 100644 index 0000000..32c1e45 --- /dev/null +++ b/public/organe/PO718610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718610", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "10", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718612.json b/public/organe/PO718612.json new file mode 100644 index 0000000..b165dd6 --- /dev/null +++ b/public/organe/PO718612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718612", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "9", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO718614.json b/public/organe/PO718614.json new file mode 100644 index 0000000..8196f14 --- /dev/null +++ b/public/organe/PO718614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO718614", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2017-06-21", "dateAgrement": null, "dateFin": "2022-06-21"}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "15", "numero": "11", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO732421.json b/public/organe/PO732421.json new file mode 100644 index 0000000..b3b3785 --- /dev/null +++ b/public/organe/PO732421.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO732421", "codeType": "GROUPESENAT", "libelle": "Groupe La R\u00e9publique En Marche", "libelleEdition": null, "libelleAbrege": "Groupe La R\u00e9publique En Marche", "libelleAbrev": "LREMP", "viMoDe": {"dateDebut": "2017-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO732859.json b/public/organe/PO732859.json new file mode 100644 index 0000000..9fdc657 --- /dev/null +++ b/public/organe/PO732859.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO732859", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Institut de radioprotection et de s\u00fbret\u00e9 nucl\u00e9aire", "libelleEdition": null, "libelleAbrege": "CA radioprotection nucl\u00e9aire", "libelleAbrev": "379", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article L. 592-45 du code de l\u2019environnement", "siteInternet": "http://www.irsn.fr/FR/IRSN/Gouvernance/Pages/Conseil_d_Administration.aspx#.Wyvdomfm7-U", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO732861.json b/public/organe/PO732861.json new file mode 100644 index 0000000..6628472 --- /dev/null +++ b/public/organe/PO732861.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO732861", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'enseignement sup\u00e9rieur et de la recherche artistiques et culturels", "libelleEdition": null, "libelleAbrege": "Conseil national enseignement sup\u00e9rieur et recherche artistiques et culturels", "libelleAbrev": "378", "viMoDe": {"dateDebut": "2016-07-07", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 239-1 du code de l\u2019\u00e9ducation", "siteInternet": "http://www.culture.gouv.fr/Thematiques/Enseignement-superieur-et-Recherche/Le-Cneserac", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO734041.json b/public/organe/PO734041.json new file mode 100644 index 0000000..33b308b --- /dev/null +++ b/public/organe/PO734041.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO734041", "codeType": "ORGEXTPARL", "libelle": "Conseil d\u2019administration de l\u2019Agence nationale pour la gestion des d\u00e9chets radioactifs", "libelleEdition": null, "libelleAbrege": "ANDRA", "libelleAbrev": "OPECST2000", "viMoDe": {"dateDebut": "2010-01-01", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 542-12-1 A du code de l'environnement", "siteInternet": "https://www.andra.fr/nous-connaitre/gouvernance/conseil-dadministration", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO741019.json b/public/organe/PO741019.json new file mode 100644 index 0000000..7f243a3 --- /dev/null +++ b/public/organe/PO741019.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO741019", "codeType": "GROUPESENAT", "libelle": "Groupe R\u00e9publique et Territoires / Les Ind\u00e9pendants", "libelleEdition": null, "libelleAbrege": "Groupe R\u00e9publique et Territoires / Les Ind\u00e9pendants", "libelleAbrev": "RTLIP", "viMoDe": {"dateDebut": "2017-10-03", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO742477.json b/public/organe/PO742477.json new file mode 100644 index 0000000..5700245 --- /dev/null +++ b/public/organe/PO742477.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO742477", "codeType": "ORGEXTPARL", "libelle": "Office franco-qu\u00e9b\u00e9cois pour la jeunesse", "libelleEdition": "de l'Office franco-qu\u00e9b\u00e9cois pour la jeunesse", "libelleAbrege": "Office franco-qu\u00e9b\u00e9cois pour la jeunesse", "libelleAbrev": "381", "viMoDe": {"dateDebut": "2017-11-01", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 31 de la loi n\u00b0 2018-699 du 3 ao\u00fbt 2018", "siteInternet": "http://www.ofqj.org/book/notre-organisation", "nombreReunionsAnnuelles": "1"}} \ No newline at end of file diff --git a/public/organe/PO744127.json b/public/organe/PO744127.json new file mode 100644 index 0000000..178967c --- /dev/null +++ b/public/organe/PO744127.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO744127", "codeType": "DELEG", "libelle": "D\u00e9l\u00e9gation aux collectivit\u00e9s territoriales et \u00e0 la d\u00e9centralisation", "libelleEdition": "de la d\u00e9l\u00e9gation aux collectivit\u00e9s territoriales et \u00e0 la d\u00e9centralisation", "libelleAbrege": "D\u00e9l\u00e9gation aux collectivit\u00e9s territoriales et \u00e0 la d\u00e9centralisation", "libelleAbrev": "COLTER", "viMoDe": {"dateDebut": "2017-11-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO744856.json b/public/organe/PO744856.json new file mode 100644 index 0000000..9144b48 --- /dev/null +++ b/public/organe/PO744856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO744856", "codeType": "PARPOL", "libelle": "La France Insoumise", "libelleEdition": "La France Insoumise", "libelleAbrege": "La France Insoumise", "libelleAbrev": "FI", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO744858.json b/public/organe/PO744858.json new file mode 100644 index 0000000..3bcadb1 --- /dev/null +++ b/public/organe/PO744858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO744858", "codeType": "PARPOL", "libelle": "R\u00e9gions et peuples solidaires", "libelleEdition": "R\u00e9gions et peuples solidaires", "libelleAbrege": "R\u00e9gions et peuples solidaires", "libelleAbrev": "RPS", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO753861.json b/public/organe/PO753861.json new file mode 100644 index 0000000..6591adc --- /dev/null +++ b/public/organe/PO753861.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO753861", "codeType": "ORGEXTPARL", "libelle": "Conseil national de la culture scientifique, technique et industrielle", "libelleEdition": null, "libelleAbrege": "Conseil national de la culture scientifique, technique et industrielle", "libelleAbrev": "OPECST2006", "viMoDe": {"dateDebut": "2017-10-31", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 124-1 du code de la recherche", "siteInternet": "http://www.culture.gouv.fr/Nous-connaitre/Organisation/Services-rattaches-a-la-ministre/Conseil-national-de-la-Culture-scientifique-technique-et-industrielle", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO756284.json b/public/organe/PO756284.json new file mode 100644 index 0000000..f588d5f --- /dev/null +++ b/public/organe/PO756284.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO756284", "codeType": "OFFPAR", "libelle": "Groupe de travail sur les droits et libert\u00e9s constitutionnels \u00e0 l'\u00e8re num\u00e9rique", "libelleEdition": "du groupe de travail sur les droits et libert\u00e9s constitutionnels \u00e0 l'\u00e8re num\u00e9rique", "libelleAbrege": "Droits et libert\u00e9s constitutionnels \u00e0 l'\u00e8re num\u00e9rique", "libelleAbrev": "DRTLIBNUM", "viMoDe": {"dateDebut": "2018-05-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO758403.json b/public/organe/PO758403.json new file mode 100644 index 0000000..b08ce63 --- /dev/null +++ b/public/organe/PO758403.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO758403", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 d'\u00e9thique du comit\u00e9 d'organisation des jeux Olympiques et Paralympiques", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 d'\u00e9thique du COJO", "libelleAbrev": "384", "viMoDe": {"dateDebut": "2018-07-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 28 de la loi n\u00b0 2018-202 du 26 mars 2018", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO758409.json b/public/organe/PO758409.json new file mode 100644 index 0000000..59660ba --- /dev/null +++ b/public/organe/PO758409.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO758409", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 des r\u00e9mun\u00e9rations du comit\u00e9 d'organisation des jeux Olympiques et Paralympiques", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 des r\u00e9mun\u00e9rations du COJO", "libelleAbrev": "385", "viMoDe": {"dateDebut": "2018-07-29", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 28 de la loi n\u00b0 2018-202 du 26 mars 2018", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO76034.json b/public/organe/PO76034.json new file mode 100644 index 0000000..2552db7 --- /dev/null +++ b/public/organe/PO76034.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO76034", "codeType": "CONSTITU", "libelle": "Conseil constitutionnel", "libelleEdition": "du Conseil constitutionnel", "libelleAbrege": "Conseil constitutionnel", "libelleAbrev": "ASSEX", "viMoDe": {"dateDebut": "1959-02-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO761239.json b/public/organe/PO761239.json new file mode 100644 index 0000000..9c65f43 --- /dev/null +++ b/public/organe/PO761239.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO761239", "codeType": "PARPOL", "libelle": "Rassemblement national", "libelleEdition": "Rassemblement national", "libelleAbrege": "Rassemblement national", "libelleAbrev": "RN", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO763346.json b/public/organe/PO763346.json new file mode 100644 index 0000000..5af1bd8 --- /dev/null +++ b/public/organe/PO763346.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO763346", "codeType": "ORGEXTPARL", "libelle": "Commission d\u00e9partementale de coop\u00e9ration intercommunale", "libelleEdition": null, "libelleAbrege": "Commission d\u00e9partementale de coop\u00e9ration intercommunale", "libelleAbrev": "388", "viMoDe": {"dateDebut": "2018-08-03", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 5211-43 du code g\u00e9n\u00e9ral des collectivit\u00e9s territoriales", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO765132.json b/public/organe/PO765132.json new file mode 100644 index 0000000..733eb91 --- /dev/null +++ b/public/organe/PO765132.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO765132", "codeType": "OFFPAR", "libelle": "Commission de v\u00e9rification des fonds sp\u00e9ciaux", "libelleEdition": null, "libelleAbrege": "Commission de v\u00e9rification des fonds sp\u00e9ciaux", "libelleAbrev": "CVFS", "viMoDe": {"dateDebut": "2001-01-01", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO767958.json b/public/organe/PO767958.json new file mode 100644 index 0000000..c9563a8 --- /dev/null +++ b/public/organe/PO767958.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO767958", "codeType": "ORGEXTPARL", "libelle": "Conseil d\u2019administration de l\u2019Institut national du cancer", "libelleEdition": null, "libelleAbrege": "Conseil d\u2019administration de l\u2019Institut national du cancer", "libelleAbrev": "389", "viMoDe": {"dateDebut": "2019-03-08", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L, 1415-4 du code de la sant\u00e9 publique", "siteInternet": "https://www.e-cancer.fr/Institut-national-du-cancer/Qui-sommes-nous/Missions", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO767963.json b/public/organe/PO767963.json new file mode 100644 index 0000000..76d483e --- /dev/null +++ b/public/organe/PO767963.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO767963", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Agence nationale pour la r\u00e9novation urbaine", "libelleEdition": null, "libelleAbrege": "Conseil d'administration de l'Agence nationale pour la r\u00e9novation urbaine", "libelleAbrev": "387", "viMoDe": {"dateDebut": "2018-11-23", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article 11 de la loi n\u00b0 2003-710 du 1 ao\u00fbt 2003 d'orientation et de programmation pour la ville et la r\u00e9novation urbaine", "siteInternet": "https://www.anru.fr/fre/ANRU/Organisation-de-l-ANRU", "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO767978.json b/public/organe/PO767978.json new file mode 100644 index 0000000..c78648a --- /dev/null +++ b/public/organe/PO767978.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO767978", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'alimentation", "libelleEdition": null, "libelleAbrege": "Conseil national de l'alimentation", "libelleAbrev": "390", "viMoDe": {"dateDebut": "2018-10-30", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 1 du code rural et de la p\u00eache maritime", "siteInternet": "https://www.cna-alimentation.fr/cna/membres/", "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO769401.json b/public/organe/PO769401.json new file mode 100644 index 0000000..c1c03e8 --- /dev/null +++ b/public/organe/PO769401.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO769401", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'air", "libelleEdition": null, "libelleAbrege": "Conseil national de l'air", "libelleAbrev": "386", "viMoDe": {"dateDebut": "2018-08-03", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 221-6-1 du code de l'environnement", "siteInternet": null, "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO769407.json b/public/organe/PO769407.json new file mode 100644 index 0000000..6fe41b4 --- /dev/null +++ b/public/organe/PO769407.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO769407", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Office fran\u00e7ais de la biodiversit\u00e9", "libelleEdition": null, "libelleAbrege": "Office fran\u00e7ais de la biodiversit\u00e9", "libelleAbrev": "393", "viMoDe": {"dateDebut": "2019-07-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 131-10 du code de l\u2019environnement", "siteInternet": null, "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO769416.json b/public/organe/PO769416.json new file mode 100644 index 0000000..364690d --- /dev/null +++ b/public/organe/PO769416.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO769416", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Agence nationale du sport", "libelleEdition": null, "libelleAbrege": "Agence nationale du sport", "libelleAbrev": "392", "viMoDe": {"dateDebut": "2019-08-01", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 112-17 du code du sport", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO769420.json b/public/organe/PO769420.json new file mode 100644 index 0000000..88e9938 --- /dev/null +++ b/public/organe/PO769420.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO769420", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de l'Agence nationale de la coh\u00e9sion des territoires", "libelleEdition": null, "libelleAbrege": "Agence nationale de la coh\u00e9sion des territoires", "libelleAbrev": "394", "viMoDe": {"dateDebut": "2019-07-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": null, "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO769424.json b/public/organe/PO769424.json new file mode 100644 index 0000000..3f3d0b7 --- /dev/null +++ b/public/organe/PO769424.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO769424", "codeType": "ORGEXTPARL", "libelle": "Conseil d'\u00e9valuation de l'\u00e9cole", "libelleEdition": null, "libelleAbrege": "Conseil d'\u00e9valuation de l'\u00e9cole", "libelleAbrev": "391", "viMoDe": {"dateDebut": "2019-07-26", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "regimeJuridique": "Article L. 241-13 du code de l\u2019\u00e9ducation", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO769950.json b/public/organe/PO769950.json new file mode 100644 index 0000000..04df9ba --- /dev/null +++ b/public/organe/PO769950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO769950", "codeType": "DELEGSENAT", "libelle": "Commission de v\u00e9rification des fonds sp\u00e9ciaux", "libelleEdition": null, "libelleAbrege": "Commission de v\u00e9rification des fonds sp\u00e9ciaux", "libelleAbrev": "CVFSD", "viMoDe": {"dateDebut": "2002-01-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO776990.json b/public/organe/PO776990.json new file mode 100644 index 0000000..9319c8f --- /dev/null +++ b/public/organe/PO776990.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO776990", "codeType": "GROUPESENAT", "libelle": "Groupe \u00c9cologiste - Solidarit\u00e9 et Territoires", "libelleEdition": null, "libelleAbrege": "Groupe \u00c9cologiste - Solidarit\u00e9 et Territoires", "libelleAbrev": "GESTP", "viMoDe": {"dateDebut": "2020-10-05", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO77707.json b/public/organe/PO77707.json new file mode 100644 index 0000000..5cf204f --- /dev/null +++ b/public/organe/PO77707.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO77707", "codeType": "GROUPESENAT", "libelle": "communiste r\u00e9publicain et citoyen", "libelleEdition": "du groupe communiste r\u00e9publicain et citoyen", "libelleAbrege": "Communiste", "libelleAbrev": "CRCPO", "viMoDe": {"dateDebut": "1992-10-02", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO77708.json b/public/organe/PO77708.json new file mode 100644 index 0000000..177b7e0 --- /dev/null +++ b/public/organe/PO77708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO77708", "codeType": "GROUPESENAT", "libelle": "Non inscrit", "libelleEdition": null, "libelleAbrege": "Non inscrit", "libelleAbrev": "NIPOL", "viMoDe": {"dateDebut": "1965-08-20", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO77710.json b/public/organe/PO77710.json new file mode 100644 index 0000000..2cc5dbf --- /dev/null +++ b/public/organe/PO77710.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO77710", "codeType": "GROUPESENAT", "libelle": "Groupe socialiste et r\u00e9publicain", "libelleEdition": "du groupe socialiste et r\u00e9publicain", "libelleAbrege": "Socialiste et r\u00e9publicain", "libelleAbrev": "SOCPO", "viMoDe": {"dateDebut": "1980-09-28", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO77714.json b/public/organe/PO77714.json new file mode 100644 index 0000000..55901f7 --- /dev/null +++ b/public/organe/PO77714.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO77714", "codeType": "GROUPESENAT", "libelle": "Groupe du rassemblement d\u00e9mocratique et social europ\u00e9en", "libelleEdition": "du groupe du rassemblement d\u00e9mocratique et social europ\u00e9en", "libelleAbrege": "Rassemblement d\u00e9mocratique et social europ\u00e9en", "libelleAbrev": "RDSEP", "viMoDe": {"dateDebut": "1992-10-02", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO784391.json b/public/organe/PO784391.json new file mode 100644 index 0000000..ce55965 --- /dev/null +++ b/public/organe/PO784391.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO784391", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de contr\u00f4le et de liaison covid-19 charg\u00e9 d'associer la soci\u00e9t\u00e9 civile et le Parlement aux op\u00e9rations de lutte contre la propagation de l'\u00e9pid\u00e9mie par suivi des contacts ainsi qu'au d\u00e9ploiement des syst\u00e8mes d'information pr\u00e9vus \u00e0 cet effet", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 contr\u00f4le covid-19", "libelleAbrev": "395", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": null, "siteInternet": null, "nombreReunionsAnnuelles": "0"}} \ No newline at end of file diff --git a/public/organe/PO784396.json b/public/organe/PO784396.json new file mode 100644 index 0000000..25d5e51 --- /dev/null +++ b/public/organe/PO784396.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO784396", "codeType": "ORGEXTPARL", "libelle": "Conseil de surveillance charg\u00e9 du suivi et du contr\u00f4le de la recherche et de la mise en \u0153uvre d\u2019alternatives aux produits phytopharmaceutiques contenant une ou des substances actives de la famille des n\u00e9onicotino\u00efdes ou pr\u00e9sentant des modes d\u2019action identiques \u00e0 ceux de ces substances", "libelleEdition": null, "libelleAbrege": "Conseil de surveillance n\u00e9onicotino\u00efdes", "libelleAbrev": "397", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": null, "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO784404.json b/public/organe/PO784404.json new file mode 100644 index 0000000..6857122 --- /dev/null +++ b/public/organe/PO784404.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO784404", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 charg\u00e9 de proposer des \u00e9volutions de la composition du Conseil \u00e9conomique, social et environnemental", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 composition du CESE", "libelleAbrev": "398", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": null, "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO784412.json b/public/organe/PO784412.json new file mode 100644 index 0000000..87a2f45 --- /dev/null +++ b/public/organe/PO784412.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO784412", "codeType": "ORGEXTPARL", "libelle": "Conseil d\u2019orientation des infrastructures", "libelleEdition": null, "libelleAbrege": "Conseil orientation infrastructures", "libelleAbrev": "399", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": null, "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO78718.json b/public/organe/PO78718.json new file mode 100644 index 0000000..ec780ad --- /dev/null +++ b/public/organe/PO78718.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO78718", "codeType": "SENAT", "libelle": "S\u00e9nat ( 5\u00e8me R\u00e9publique )", "libelleEdition": "du s\u00e9nat ( 5\u00e8me R\u00e9publique )", "libelleAbrege": "S\u00e9nat", "libelleAbrev": "SENAT", "viMoDe": {"dateDebut": "1958-12-09", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO791579.json b/public/organe/PO791579.json new file mode 100644 index 0000000..c9db992 --- /dev/null +++ b/public/organe/PO791579.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791579", "codeType": "GOUVERNEMENT", "libelle": "Gouvernement", "libelleEdition": "du Gouvernement", "libelleAbrege": "BORNE", "libelleAbrev": "GVT", "viMoDe": {"dateDebut": "2022-05-17", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO791580.json b/public/organe/PO791580.json new file mode 100644 index 0000000..79abd04 --- /dev/null +++ b/public/organe/PO791580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791580", "codeType": "MINISTERE", "libelle": "Premi\u00e8re ministre", "libelleEdition": null, "libelleAbrege": "Premi\u00e8re ministre", "libelleAbrev": "PRM", "viMoDe": {"dateDebut": "2022-05-17", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791591.json b/public/organe/PO791591.json new file mode 100644 index 0000000..f5375e2 --- /dev/null +++ b/public/organe/PO791591.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791591", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique", "libelleEdition": "de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique", "libelleAbrege": "\u00c9conomie, finances, souverainet\u00e9 industrielle et num\u00e9rique", "libelleAbrev": "ECO", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791595.json b/public/organe/PO791595.json new file mode 100644 index 0000000..299edb2 --- /dev/null +++ b/public/organe/PO791595.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791595", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de l\u2019Europe et des affaires \u00e9trang\u00e8res", "libelleEdition": "de l\u2019Europe et des affaires \u00e9trang\u00e8res", "libelleAbrege": "Europe et affaires \u00e9trang\u00e8res", "libelleAbrev": "EAE", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791597.json b/public/organe/PO791597.json new file mode 100644 index 0000000..698f0e8 --- /dev/null +++ b/public/organe/PO791597.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791597", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de la justice", "libelleEdition": "de la justice", "libelleAbrege": "Justice", "libelleAbrev": "JUS", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791599.json b/public/organe/PO791599.json new file mode 100644 index 0000000..750facf --- /dev/null +++ b/public/organe/PO791599.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791599", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de la transition \u00e9cologique et de la coh\u00e9sion des territoires", "libelleEdition": "de la transition \u00e9cologique et de la coh\u00e9sion des territoires", "libelleAbrege": "Transition \u00e9cologique et coh\u00e9sion des territoires", "libelleAbrev": "TRE", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791601.json b/public/organe/PO791601.json new file mode 100644 index 0000000..788233e --- /dev/null +++ b/public/organe/PO791601.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791601", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de l\u2019\u00e9ducation nationale et de la jeunesse", "libelleEdition": "de l\u2019\u00e9ducation nationale et de la jeunesse", "libelleAbrege": "\u00c9ducation nationale et jeunesse", "libelleAbrev": "MEN", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791603.json b/public/organe/PO791603.json new file mode 100644 index 0000000..41206db --- /dev/null +++ b/public/organe/PO791603.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791603", "codeType": "MINISTERE", "libelle": "Minist\u00e8re des arm\u00e9es", "libelleEdition": "des arm\u00e9es", "libelleAbrege": "Arm\u00e9es", "libelleAbrev": "ARM", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791605.json b/public/organe/PO791605.json new file mode 100644 index 0000000..9036fff --- /dev/null +++ b/public/organe/PO791605.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791605", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de la sant\u00e9 et de la pr\u00e9vention", "libelleEdition": "de la sant\u00e9 et de la pr\u00e9vention", "libelleAbrege": "Sant\u00e9 et pr\u00e9vention", "libelleAbrev": "SPR", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791607.json b/public/organe/PO791607.json new file mode 100644 index 0000000..49b2dee --- /dev/null +++ b/public/organe/PO791607.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791607", "codeType": "MINISTERE", "libelle": "Minist\u00e8re du travail, du plein emploi et de l\u2019insertion", "libelleEdition": "du travail, du plein emploi et de l\u2019insertion", "libelleAbrege": "Travail, plein emploi et insertion", "libelleAbrev": "MTR", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791609.json b/public/organe/PO791609.json new file mode 100644 index 0000000..1950fc5 --- /dev/null +++ b/public/organe/PO791609.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791609", "codeType": "MINISTERE", "libelle": "Minist\u00e8re des solidarit\u00e9s, de l'autonomie et des personnes handicap\u00e9es", "libelleEdition": "des solidarit\u00e9s, de l'autonomie et des personnes handicap\u00e9es", "libelleAbrege": "Solidarit\u00e9s, autonomie et personnes handicap\u00e9es", "libelleAbrev": "APH", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791611.json b/public/organe/PO791611.json new file mode 100644 index 0000000..2d6f040 --- /dev/null +++ b/public/organe/PO791611.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791611", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de l\u2019enseignement sup\u00e9rieur et de la recherche", "libelleEdition": "de l\u2019enseignement sup\u00e9rieur et de la recherche", "libelleAbrege": "Enseignement sup\u00e9rieur et recherche", "libelleAbrev": "ESR", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791613.json b/public/organe/PO791613.json new file mode 100644 index 0000000..2f8c1c5 --- /dev/null +++ b/public/organe/PO791613.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791613", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de l\u2019agriculture et de la souverainet\u00e9 alimentaire", "libelleEdition": "de l\u2019agriculture et de la souverainet\u00e9 alimentaire", "libelleAbrege": "Agriculture et souverainet\u00e9 alimentaire", "libelleAbrev": "AGR", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791615.json b/public/organe/PO791615.json new file mode 100644 index 0000000..3dd6768 --- /dev/null +++ b/public/organe/PO791615.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791615", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de la transformation et de la fonction publiques", "libelleEdition": "de la transformation et de la fonction publiques", "libelleAbrege": "Transformation et fonction publiques", "libelleAbrev": "TFP", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791619.json b/public/organe/PO791619.json new file mode 100644 index 0000000..5e34ef0 --- /dev/null +++ b/public/organe/PO791619.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791619", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de la culture", "libelleEdition": "de la culture", "libelleAbrege": "Culture", "libelleAbrev": "MIC", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791621.json b/public/organe/PO791621.json new file mode 100644 index 0000000..780d63f --- /dev/null +++ b/public/organe/PO791621.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791621", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de la transition \u00e9nerg\u00e9tique", "libelleEdition": "de la transition \u00e9nerg\u00e9tique", "libelleAbrege": "Transition \u00e9nerg\u00e9tique", "libelleAbrev": "ENE", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791623.json b/public/organe/PO791623.json new file mode 100644 index 0000000..1534271 --- /dev/null +++ b/public/organe/PO791623.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791623", "codeType": "MINISTERE", "libelle": "Minist\u00e8re des sports et des jeux Olympiques et Paralympiques", "libelleEdition": "des sports et des jeux Olympiques et Paralympiques", "libelleAbrege": "Sports, jeux Olympiques et Paralympiques", "libelleAbrev": "SPO", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791627.json b/public/organe/PO791627.json new file mode 100644 index 0000000..701afbf --- /dev/null +++ b/public/organe/PO791627.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791627", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 de l\u2019\u00e9galit\u00e9 entre les femmes et les hommes, de la diversit\u00e9 et de l\u2019\u00e9galit\u00e9 des chances", "libelleEdition": "aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 de l\u2019\u00e9galit\u00e9 entre les femmes et les hommes, de la diversit\u00e9 et de l\u2019\u00e9galit\u00e9 des chances", "libelleAbrege": "\u00c9galit\u00e9 femmes-hommes, diversit\u00e9 et \u00e9galit\u00e9 des chances", "libelleAbrev": "PRMFE", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791629.json b/public/organe/PO791629.json new file mode 100644 index 0000000..959ee69 --- /dev/null +++ b/public/organe/PO791629.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791629", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique, charg\u00e9 des comptes publics", "libelleEdition": "aupr\u00e8s du ministre de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique, charg\u00e9 des comptes publics", "libelleAbrege": "Comptes publics", "libelleAbrev": "ECOCP", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791639.json b/public/organe/PO791639.json new file mode 100644 index 0000000..cd99f64 --- /dev/null +++ b/public/organe/PO791639.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791639", "codeType": "MINISTERE", "libelle": "Secr\u00e9tariat d\u2019\u00c9tat aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 de la mer", "libelleEdition": "aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 de la mer", "libelleAbrege": "Mer", "libelleAbrev": "PRMME", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791641.json b/public/organe/PO791641.json new file mode 100644 index 0000000..94b3577 --- /dev/null +++ b/public/organe/PO791641.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791641", "codeType": "MINISTERE", "libelle": "Secr\u00e9tariat d\u2019\u00c9tat aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 de l\u2019enfance", "libelleEdition": "aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 de l\u2019enfance", "libelleAbrege": "Enfance", "libelleAbrev": "PRMEN", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791643.json b/public/organe/PO791643.json new file mode 100644 index 0000000..ef4f844 --- /dev/null +++ b/public/organe/PO791643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO791643", "codeType": "MINISTERE", "libelle": "Secr\u00e9tariat d\u2019\u00c9tat aupr\u00e8s de la ministre de l\u2019Europe et des affaires \u00e9trang\u00e8res, charg\u00e9 du d\u00e9veloppement, de la francophonie et des partenariats internationaux", "libelleEdition": "aupr\u00e8s de la ministre de l\u2019Europe et des affaires \u00e9trang\u00e8res, charg\u00e9 du d\u00e9veloppement, de la francophonie et des partenariats internationaux", "libelleAbrege": "D\u00e9veloppement, francophonie et partenariats internationaux", "libelleAbrev": "EAEDE", "viMoDe": {"dateDebut": "2022-05-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO791932.json b/public/organe/PO791932.json new file mode 100644 index 0000000..f4e1ca4 --- /dev/null +++ b/public/organe/PO791932.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO791932", "codeType": "ASSEMBLEE", "libelle": "Assembl\u00e9e nationale de la 16\u00e8me l\u00e9gislature", "libelleEdition": "de l'Assembl\u00e9e", "libelleAbrege": "Assembl\u00e9e", "libelleAbrev": "AN", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO791934.json b/public/organe/PO791934.json new file mode 100644 index 0000000..da54d8d --- /dev/null +++ b/public/organe/PO791934.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791934", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO791936.json b/public/organe/PO791936.json new file mode 100644 index 0000000..e395d8e --- /dev/null +++ b/public/organe/PO791936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791936", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO791938.json b/public/organe/PO791938.json new file mode 100644 index 0000000..43d6418 --- /dev/null +++ b/public/organe/PO791938.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791938", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO791940.json b/public/organe/PO791940.json new file mode 100644 index 0000000..a0c296e --- /dev/null +++ b/public/organe/PO791940.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791940", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "43 Haute-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "43", "libelle": "Haute-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO791942.json b/public/organe/PO791942.json new file mode 100644 index 0000000..a17341d --- /dev/null +++ b/public/organe/PO791942.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791942", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO791944.json b/public/organe/PO791944.json new file mode 100644 index 0000000..2fa5dd0 --- /dev/null +++ b/public/organe/PO791944.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791944", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO791946.json b/public/organe/PO791946.json new file mode 100644 index 0000000..544da7d --- /dev/null +++ b/public/organe/PO791946.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791946", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO791948.json b/public/organe/PO791948.json new file mode 100644 index 0000000..04d2938 --- /dev/null +++ b/public/organe/PO791948.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791948", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO791950.json b/public/organe/PO791950.json new file mode 100644 index 0000000..c9f4acf --- /dev/null +++ b/public/organe/PO791950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791950", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO791952.json b/public/organe/PO791952.json new file mode 100644 index 0000000..f7c6ddd --- /dev/null +++ b/public/organe/PO791952.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791952", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO791954.json b/public/organe/PO791954.json new file mode 100644 index 0000000..ecf1898 --- /dev/null +++ b/public/organe/PO791954.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791954", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loir-et-Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "41 Loir-et-Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "41", "libelle": "Loir-et-Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO791956.json b/public/organe/PO791956.json new file mode 100644 index 0000000..55ae0e7 --- /dev/null +++ b/public/organe/PO791956.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791956", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "42 Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "42", "libelle": "Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO791958.json b/public/organe/PO791958.json new file mode 100644 index 0000000..1409f21 --- /dev/null +++ b/public/organe/PO791958.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791958", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO791960.json b/public/organe/PO791960.json new file mode 100644 index 0000000..60ffaad --- /dev/null +++ b/public/organe/PO791960.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791960", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO791962.json b/public/organe/PO791962.json new file mode 100644 index 0000000..a8f04e9 --- /dev/null +++ b/public/organe/PO791962.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791962", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO791964.json b/public/organe/PO791964.json new file mode 100644 index 0000000..15023d5 --- /dev/null +++ b/public/organe/PO791964.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791964", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Landes", "libelleEdition": "de la circonscription", "libelleAbrege": "40 Landes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "40", "libelle": "Landes"}}}} \ No newline at end of file diff --git a/public/organe/PO791966.json b/public/organe/PO791966.json new file mode 100644 index 0000000..db9a358 --- /dev/null +++ b/public/organe/PO791966.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791966", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO791968.json b/public/organe/PO791968.json new file mode 100644 index 0000000..becec95 --- /dev/null +++ b/public/organe/PO791968.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791968", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO791970.json b/public/organe/PO791970.json new file mode 100644 index 0000000..7c1b879 --- /dev/null +++ b/public/organe/PO791970.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791970", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO791972.json b/public/organe/PO791972.json new file mode 100644 index 0000000..1c5b08c --- /dev/null +++ b/public/organe/PO791972.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791972", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO791974.json b/public/organe/PO791974.json new file mode 100644 index 0000000..94cd6f6 --- /dev/null +++ b/public/organe/PO791974.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791974", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791976.json b/public/organe/PO791976.json new file mode 100644 index 0000000..12c1610 --- /dev/null +++ b/public/organe/PO791976.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791976", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791978.json b/public/organe/PO791978.json new file mode 100644 index 0000000..b98af88 --- /dev/null +++ b/public/organe/PO791978.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791978", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO791980.json b/public/organe/PO791980.json new file mode 100644 index 0000000..b3532b5 --- /dev/null +++ b/public/organe/PO791980.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791980", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO791982.json b/public/organe/PO791982.json new file mode 100644 index 0000000..ebb6a9c --- /dev/null +++ b/public/organe/PO791982.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791982", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791984.json b/public/organe/PO791984.json new file mode 100644 index 0000000..8bc10c3 --- /dev/null +++ b/public/organe/PO791984.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791984", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791986.json b/public/organe/PO791986.json new file mode 100644 index 0000000..98f5065 --- /dev/null +++ b/public/organe/PO791986.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791986", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791988.json b/public/organe/PO791988.json new file mode 100644 index 0000000..b4c16e5 --- /dev/null +++ b/public/organe/PO791988.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791988", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791990.json b/public/organe/PO791990.json new file mode 100644 index 0000000..0718f10 --- /dev/null +++ b/public/organe/PO791990.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791990", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791992.json b/public/organe/PO791992.json new file mode 100644 index 0000000..ac6fbb1 --- /dev/null +++ b/public/organe/PO791992.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791992", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791994.json b/public/organe/PO791994.json new file mode 100644 index 0000000..80e6e90 --- /dev/null +++ b/public/organe/PO791994.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791994", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791996.json b/public/organe/PO791996.json new file mode 100644 index 0000000..e97e16b --- /dev/null +++ b/public/organe/PO791996.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791996", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Loire-Atlantique", "libelleEdition": "de la circonscription", "libelleAbrege": "44 Loire-Atlantique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "44", "libelle": "Loire-Atlantique"}}}} \ No newline at end of file diff --git a/public/organe/PO791998.json b/public/organe/PO791998.json new file mode 100644 index 0000000..d49f7be --- /dev/null +++ b/public/organe/PO791998.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO791998", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792000.json b/public/organe/PO792000.json new file mode 100644 index 0000000..f477c44 --- /dev/null +++ b/public/organe/PO792000.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792000", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO792002.json b/public/organe/PO792002.json new file mode 100644 index 0000000..90dd4bb --- /dev/null +++ b/public/organe/PO792002.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792002", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO792004.json b/public/organe/PO792004.json new file mode 100644 index 0000000..65c5a77 --- /dev/null +++ b/public/organe/PO792004.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792004", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO792006.json b/public/organe/PO792006.json new file mode 100644 index 0000000..9b0bba4 --- /dev/null +++ b/public/organe/PO792006.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792006", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792008.json b/public/organe/PO792008.json new file mode 100644 index 0000000..6d3878f --- /dev/null +++ b/public/organe/PO792008.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792008", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792010.json b/public/organe/PO792010.json new file mode 100644 index 0000000..af50642 --- /dev/null +++ b/public/organe/PO792010.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792010", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792012.json b/public/organe/PO792012.json new file mode 100644 index 0000000..cc659e1 --- /dev/null +++ b/public/organe/PO792012.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792012", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792014.json b/public/organe/PO792014.json new file mode 100644 index 0000000..293e572 --- /dev/null +++ b/public/organe/PO792014.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792014", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792016.json b/public/organe/PO792016.json new file mode 100644 index 0000000..2156a50 --- /dev/null +++ b/public/organe/PO792016.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792016", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Loz\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "48 Loz\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "48", "libelle": "Loz\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792018.json b/public/organe/PO792018.json new file mode 100644 index 0000000..11a655d --- /dev/null +++ b/public/organe/PO792018.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792018", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792020.json b/public/organe/PO792020.json new file mode 100644 index 0000000..77ecc57 --- /dev/null +++ b/public/organe/PO792020.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792020", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Maine-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "49 Maine-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "49", "libelle": "Maine-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792022.json b/public/organe/PO792022.json new file mode 100644 index 0000000..51035c0 --- /dev/null +++ b/public/organe/PO792022.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792022", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot", "libelleEdition": "de la circonscription", "libelleAbrege": "46 Lot (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "46", "libelle": "Lot"}}}} \ No newline at end of file diff --git a/public/organe/PO792024.json b/public/organe/PO792024.json new file mode 100644 index 0000000..c6e215a --- /dev/null +++ b/public/organe/PO792024.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792024", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792026.json b/public/organe/PO792026.json new file mode 100644 index 0000000..f458981 --- /dev/null +++ b/public/organe/PO792026.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792026", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792028.json b/public/organe/PO792028.json new file mode 100644 index 0000000..96bf62b --- /dev/null +++ b/public/organe/PO792028.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792028", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Lot-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "47 Lot-et-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "47", "libelle": "Lot-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792030.json b/public/organe/PO792030.json new file mode 100644 index 0000000..48686e5 --- /dev/null +++ b/public/organe/PO792030.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792030", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792032.json b/public/organe/PO792032.json new file mode 100644 index 0000000..4de3da2 --- /dev/null +++ b/public/organe/PO792032.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792032", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO792034.json b/public/organe/PO792034.json new file mode 100644 index 0000000..7f8c34b --- /dev/null +++ b/public/organe/PO792034.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792034", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Manche", "libelleEdition": "de la circonscription", "libelleAbrege": "50 Manche (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "50", "libelle": "Manche"}}}} \ No newline at end of file diff --git a/public/organe/PO792036.json b/public/organe/PO792036.json new file mode 100644 index 0000000..275f4ab --- /dev/null +++ b/public/organe/PO792036.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792036", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792038.json b/public/organe/PO792038.json new file mode 100644 index 0000000..c121988 --- /dev/null +++ b/public/organe/PO792038.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792038", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO792040.json b/public/organe/PO792040.json new file mode 100644 index 0000000..c68c4fe --- /dev/null +++ b/public/organe/PO792040.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792040", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "52 Haute-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "52", "libelle": "Haute-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792042.json b/public/organe/PO792042.json new file mode 100644 index 0000000..7f5db15 --- /dev/null +++ b/public/organe/PO792042.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792042", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792044.json b/public/organe/PO792044.json new file mode 100644 index 0000000..b88754a --- /dev/null +++ b/public/organe/PO792044.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792044", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Mayenne", "libelleEdition": "de la circonscription", "libelleAbrege": "53 Mayenne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "53", "libelle": "Mayenne"}}}} \ No newline at end of file diff --git a/public/organe/PO792046.json b/public/organe/PO792046.json new file mode 100644 index 0000000..7351ab4 --- /dev/null +++ b/public/organe/PO792046.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792046", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO792048.json b/public/organe/PO792048.json new file mode 100644 index 0000000..df4f16d --- /dev/null +++ b/public/organe/PO792048.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792048", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792050.json b/public/organe/PO792050.json new file mode 100644 index 0000000..ff6755c --- /dev/null +++ b/public/organe/PO792050.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792050", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO792052.json b/public/organe/PO792052.json new file mode 100644 index 0000000..86ca3ee --- /dev/null +++ b/public/organe/PO792052.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792052", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO792054.json b/public/organe/PO792054.json new file mode 100644 index 0000000..c9e3ea0 --- /dev/null +++ b/public/organe/PO792054.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792054", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792056.json b/public/organe/PO792056.json new file mode 100644 index 0000000..d07e655 --- /dev/null +++ b/public/organe/PO792056.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792056", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792058.json b/public/organe/PO792058.json new file mode 100644 index 0000000..d71cb82 --- /dev/null +++ b/public/organe/PO792058.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792058", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792060.json b/public/organe/PO792060.json new file mode 100644 index 0000000..1a05528 --- /dev/null +++ b/public/organe/PO792060.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792060", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "51 Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "51", "libelle": "Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792062.json b/public/organe/PO792062.json new file mode 100644 index 0000000..0e61720 --- /dev/null +++ b/public/organe/PO792062.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792062", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792064.json b/public/organe/PO792064.json new file mode 100644 index 0000000..f87d503 --- /dev/null +++ b/public/organe/PO792064.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792064", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792066.json b/public/organe/PO792066.json new file mode 100644 index 0000000..dbf6e86 --- /dev/null +++ b/public/organe/PO792066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792066", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792068.json b/public/organe/PO792068.json new file mode 100644 index 0000000..d5e6c47 --- /dev/null +++ b/public/organe/PO792068.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792068", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Meurthe-et-Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "54 Meurthe-et-Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "54", "libelle": "Meurthe-et-Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792070.json b/public/organe/PO792070.json new file mode 100644 index 0000000..b702187 --- /dev/null +++ b/public/organe/PO792070.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792070", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792072.json b/public/organe/PO792072.json new file mode 100644 index 0000000..4f55038 --- /dev/null +++ b/public/organe/PO792072.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792072", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO792074.json b/public/organe/PO792074.json new file mode 100644 index 0000000..98b47f8 --- /dev/null +++ b/public/organe/PO792074.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792074", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792076.json b/public/organe/PO792076.json new file mode 100644 index 0000000..3d97ab4 --- /dev/null +++ b/public/organe/PO792076.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792076", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792078.json b/public/organe/PO792078.json new file mode 100644 index 0000000..c41e6da --- /dev/null +++ b/public/organe/PO792078.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792078", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792080.json b/public/organe/PO792080.json new file mode 100644 index 0000000..17f7ef3 --- /dev/null +++ b/public/organe/PO792080.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792080", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792082.json b/public/organe/PO792082.json new file mode 100644 index 0000000..6bec339 --- /dev/null +++ b/public/organe/PO792082.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792082", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792084.json b/public/organe/PO792084.json new file mode 100644 index 0000000..a473f40 --- /dev/null +++ b/public/organe/PO792084.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792084", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792086.json b/public/organe/PO792086.json new file mode 100644 index 0000000..ed9f9c0 --- /dev/null +++ b/public/organe/PO792086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792086", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO792088.json b/public/organe/PO792088.json new file mode 100644 index 0000000..411660b --- /dev/null +++ b/public/organe/PO792088.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792088", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Meuse", "libelleEdition": "de la circonscription", "libelleAbrege": "55 Meuse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "55", "libelle": "Meuse"}}}} \ No newline at end of file diff --git a/public/organe/PO792090.json b/public/organe/PO792090.json new file mode 100644 index 0000000..be046f3 --- /dev/null +++ b/public/organe/PO792090.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792090", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO792092.json b/public/organe/PO792092.json new file mode 100644 index 0000000..666e401 --- /dev/null +++ b/public/organe/PO792092.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792092", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Morbihan", "libelleEdition": "de la circonscription", "libelleAbrege": "56 Morbihan (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "56", "libelle": "Morbihan"}}}} \ No newline at end of file diff --git a/public/organe/PO792094.json b/public/organe/PO792094.json new file mode 100644 index 0000000..0256f0c --- /dev/null +++ b/public/organe/PO792094.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792094", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792096.json b/public/organe/PO792096.json new file mode 100644 index 0000000..e6fe16d --- /dev/null +++ b/public/organe/PO792096.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792096", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792098.json b/public/organe/PO792098.json new file mode 100644 index 0000000..0fdd400 --- /dev/null +++ b/public/organe/PO792098.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792098", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792100.json b/public/organe/PO792100.json new file mode 100644 index 0000000..6a8b781 --- /dev/null +++ b/public/organe/PO792100.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792100", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792102.json b/public/organe/PO792102.json new file mode 100644 index 0000000..cb5761a --- /dev/null +++ b/public/organe/PO792102.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792102", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792104.json b/public/organe/PO792104.json new file mode 100644 index 0000000..73d8349 --- /dev/null +++ b/public/organe/PO792104.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792104", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792106.json b/public/organe/PO792106.json new file mode 100644 index 0000000..509624c --- /dev/null +++ b/public/organe/PO792106.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792106", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Moselle", "libelleEdition": "de la circonscription", "libelleAbrege": "57 Moselle (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "57", "libelle": "Moselle"}}}} \ No newline at end of file diff --git a/public/organe/PO792108.json b/public/organe/PO792108.json new file mode 100644 index 0000000..b795733 --- /dev/null +++ b/public/organe/PO792108.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792108", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792110.json b/public/organe/PO792110.json new file mode 100644 index 0000000..a54275b --- /dev/null +++ b/public/organe/PO792110.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792110", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792112.json b/public/organe/PO792112.json new file mode 100644 index 0000000..16fe946 --- /dev/null +++ b/public/organe/PO792112.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792112", "codeType": "CIRCONSCRIPTION", "libelle": "19\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b019\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "19", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792114.json b/public/organe/PO792114.json new file mode 100644 index 0000000..2cfc51c --- /dev/null +++ b/public/organe/PO792114.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792114", "codeType": "CIRCONSCRIPTION", "libelle": "20\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b020\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "20", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792116.json b/public/organe/PO792116.json new file mode 100644 index 0000000..8648858 --- /dev/null +++ b/public/organe/PO792116.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792116", "codeType": "CIRCONSCRIPTION", "libelle": "21\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b021\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "21", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792118.json b/public/organe/PO792118.json new file mode 100644 index 0000000..3400a3a --- /dev/null +++ b/public/organe/PO792118.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792118", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO792120.json b/public/organe/PO792120.json new file mode 100644 index 0000000..2f57064 --- /dev/null +++ b/public/organe/PO792120.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792120", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Ni\u00e8vre", "libelleEdition": "de la circonscription", "libelleAbrege": "58 Ni\u00e8vre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "58", "libelle": "Ni\u00e8vre"}}}} \ No newline at end of file diff --git a/public/organe/PO792122.json b/public/organe/PO792122.json new file mode 100644 index 0000000..0d447b7 --- /dev/null +++ b/public/organe/PO792122.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792122", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792124.json b/public/organe/PO792124.json new file mode 100644 index 0000000..0494839 --- /dev/null +++ b/public/organe/PO792124.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792124", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792126.json b/public/organe/PO792126.json new file mode 100644 index 0000000..f35454a --- /dev/null +++ b/public/organe/PO792126.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792126", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792128.json b/public/organe/PO792128.json new file mode 100644 index 0000000..8fbed3a --- /dev/null +++ b/public/organe/PO792128.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792128", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792130.json b/public/organe/PO792130.json new file mode 100644 index 0000000..2c0bdc0 --- /dev/null +++ b/public/organe/PO792130.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792130", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792132.json b/public/organe/PO792132.json new file mode 100644 index 0000000..32413bd --- /dev/null +++ b/public/organe/PO792132.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792132", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792134.json b/public/organe/PO792134.json new file mode 100644 index 0000000..7a16eb2 --- /dev/null +++ b/public/organe/PO792134.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792134", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792136.json b/public/organe/PO792136.json new file mode 100644 index 0000000..8613612 --- /dev/null +++ b/public/organe/PO792136.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792136", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792138.json b/public/organe/PO792138.json new file mode 100644 index 0000000..5e0c52d --- /dev/null +++ b/public/organe/PO792138.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792138", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792140.json b/public/organe/PO792140.json new file mode 100644 index 0000000..a005632 --- /dev/null +++ b/public/organe/PO792140.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792140", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Nord", "libelleEdition": "de la circonscription", "libelleAbrege": "59 Nord (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "59", "libelle": "Nord"}}}} \ No newline at end of file diff --git a/public/organe/PO792142.json b/public/organe/PO792142.json new file mode 100644 index 0000000..525016b --- /dev/null +++ b/public/organe/PO792142.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792142", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792144.json b/public/organe/PO792144.json new file mode 100644 index 0000000..df2b4ef --- /dev/null +++ b/public/organe/PO792144.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792144", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792146.json b/public/organe/PO792146.json new file mode 100644 index 0000000..46c9985 --- /dev/null +++ b/public/organe/PO792146.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792146", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792148.json b/public/organe/PO792148.json new file mode 100644 index 0000000..434ec60 --- /dev/null +++ b/public/organe/PO792148.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792148", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792150.json b/public/organe/PO792150.json new file mode 100644 index 0000000..7b0f423 --- /dev/null +++ b/public/organe/PO792150.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792150", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO792152.json b/public/organe/PO792152.json new file mode 100644 index 0000000..61add4c --- /dev/null +++ b/public/organe/PO792152.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792152", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO792154.json b/public/organe/PO792154.json new file mode 100644 index 0000000..cc51448 --- /dev/null +++ b/public/organe/PO792154.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792154", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Orne", "libelleEdition": "de la circonscription", "libelleAbrege": "61 Orne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "61", "libelle": "Orne"}}}} \ No newline at end of file diff --git a/public/organe/PO792156.json b/public/organe/PO792156.json new file mode 100644 index 0000000..4d7089f --- /dev/null +++ b/public/organe/PO792156.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792156", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792158.json b/public/organe/PO792158.json new file mode 100644 index 0000000..fcc6356 --- /dev/null +++ b/public/organe/PO792158.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792158", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792160.json b/public/organe/PO792160.json new file mode 100644 index 0000000..e698d42 --- /dev/null +++ b/public/organe/PO792160.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792160", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792162.json b/public/organe/PO792162.json new file mode 100644 index 0000000..397de16 --- /dev/null +++ b/public/organe/PO792162.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792162", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO792164.json b/public/organe/PO792164.json new file mode 100644 index 0000000..dcc6fdc --- /dev/null +++ b/public/organe/PO792164.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792164", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792166.json b/public/organe/PO792166.json new file mode 100644 index 0000000..0f2bc06 --- /dev/null +++ b/public/organe/PO792166.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792166", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792168.json b/public/organe/PO792168.json new file mode 100644 index 0000000..c3da772 --- /dev/null +++ b/public/organe/PO792168.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792168", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792170.json b/public/organe/PO792170.json new file mode 100644 index 0000000..a720dce --- /dev/null +++ b/public/organe/PO792170.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792170", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792172.json b/public/organe/PO792172.json new file mode 100644 index 0000000..3b8381e --- /dev/null +++ b/public/organe/PO792172.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792172", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "60 Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "60", "libelle": "Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792174.json b/public/organe/PO792174.json new file mode 100644 index 0000000..6284368 --- /dev/null +++ b/public/organe/PO792174.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792174", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792176.json b/public/organe/PO792176.json new file mode 100644 index 0000000..6407608 --- /dev/null +++ b/public/organe/PO792176.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792176", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO792178.json b/public/organe/PO792178.json new file mode 100644 index 0000000..be2da0e --- /dev/null +++ b/public/organe/PO792178.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792178", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792180.json b/public/organe/PO792180.json new file mode 100644 index 0000000..dcc705e --- /dev/null +++ b/public/organe/PO792180.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792180", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792182.json b/public/organe/PO792182.json new file mode 100644 index 0000000..a70185b --- /dev/null +++ b/public/organe/PO792182.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792182", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO792184.json b/public/organe/PO792184.json new file mode 100644 index 0000000..e3e53e9 --- /dev/null +++ b/public/organe/PO792184.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792184", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO792186.json b/public/organe/PO792186.json new file mode 100644 index 0000000..7d7d942 --- /dev/null +++ b/public/organe/PO792186.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792186", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO792188.json b/public/organe/PO792188.json new file mode 100644 index 0000000..d7c6424 --- /dev/null +++ b/public/organe/PO792188.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792188", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Puy-de-D\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "63 Puy-de-D\u00f4me (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "63", "libelle": "Puy-de-D\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO792190.json b/public/organe/PO792190.json new file mode 100644 index 0000000..9909c27 --- /dev/null +++ b/public/organe/PO792190.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792190", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO792192.json b/public/organe/PO792192.json new file mode 100644 index 0000000..d5c6993 --- /dev/null +++ b/public/organe/PO792192.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792192", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO792194.json b/public/organe/PO792194.json new file mode 100644 index 0000000..238efd1 --- /dev/null +++ b/public/organe/PO792194.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792194", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO792196.json b/public/organe/PO792196.json new file mode 100644 index 0000000..efde951 --- /dev/null +++ b/public/organe/PO792196.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792196", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Orientales", "libelleEdition": "de la circonscription", "libelleAbrege": "66 Pyr\u00e9n\u00e9es-Orientales (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "66", "libelle": "Pyr\u00e9n\u00e9es-Orientales"}}}} \ No newline at end of file diff --git a/public/organe/PO792198.json b/public/organe/PO792198.json new file mode 100644 index 0000000..9c51ede --- /dev/null +++ b/public/organe/PO792198.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792198", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792200.json b/public/organe/PO792200.json new file mode 100644 index 0000000..89fd653 --- /dev/null +++ b/public/organe/PO792200.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792200", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792202.json b/public/organe/PO792202.json new file mode 100644 index 0000000..2567272 --- /dev/null +++ b/public/organe/PO792202.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792202", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792204.json b/public/organe/PO792204.json new file mode 100644 index 0000000..c4f744e --- /dev/null +++ b/public/organe/PO792204.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792204", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Pas-de-Calais", "libelleEdition": "de la circonscription", "libelleAbrege": "62 Pas-de-Calais (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "62", "libelle": "Pas-de-Calais"}}}} \ No newline at end of file diff --git a/public/organe/PO792206.json b/public/organe/PO792206.json new file mode 100644 index 0000000..d74a6d1 --- /dev/null +++ b/public/organe/PO792206.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792206", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO792208.json b/public/organe/PO792208.json new file mode 100644 index 0000000..2826726 --- /dev/null +++ b/public/organe/PO792208.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792208", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO792210.json b/public/organe/PO792210.json new file mode 100644 index 0000000..a1fc762 --- /dev/null +++ b/public/organe/PO792210.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792210", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO792212.json b/public/organe/PO792212.json new file mode 100644 index 0000000..79c1e86 --- /dev/null +++ b/public/organe/PO792212.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792212", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO792214.json b/public/organe/PO792214.json new file mode 100644 index 0000000..ef47b12 --- /dev/null +++ b/public/organe/PO792214.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792214", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792216.json b/public/organe/PO792216.json new file mode 100644 index 0000000..276d30e --- /dev/null +++ b/public/organe/PO792216.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792216", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792218.json b/public/organe/PO792218.json new file mode 100644 index 0000000..d4f393b --- /dev/null +++ b/public/organe/PO792218.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792218", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792220.json b/public/organe/PO792220.json new file mode 100644 index 0000000..88ec081 --- /dev/null +++ b/public/organe/PO792220.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792220", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792222.json b/public/organe/PO792222.json new file mode 100644 index 0000000..2ed3663 --- /dev/null +++ b/public/organe/PO792222.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792222", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792224.json b/public/organe/PO792224.json new file mode 100644 index 0000000..a582017 --- /dev/null +++ b/public/organe/PO792224.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792224", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792226.json b/public/organe/PO792226.json new file mode 100644 index 0000000..4c26715 --- /dev/null +++ b/public/organe/PO792226.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792226", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792228.json b/public/organe/PO792228.json new file mode 100644 index 0000000..b035f53 --- /dev/null +++ b/public/organe/PO792228.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792228", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792230.json b/public/organe/PO792230.json new file mode 100644 index 0000000..daa71f9 --- /dev/null +++ b/public/organe/PO792230.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792230", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Pyr\u00e9n\u00e9es-Atlantiques", "libelleEdition": "de la circonscription", "libelleAbrege": "64 Pyr\u00e9n\u00e9es-Atlantiques (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "64", "libelle": "Pyr\u00e9n\u00e9es-Atlantiques"}}}} \ No newline at end of file diff --git a/public/organe/PO792232.json b/public/organe/PO792232.json new file mode 100644 index 0000000..ccafd04 --- /dev/null +++ b/public/organe/PO792232.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792232", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO792234.json b/public/organe/PO792234.json new file mode 100644 index 0000000..3835492 --- /dev/null +++ b/public/organe/PO792234.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792234", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792236.json b/public/organe/PO792236.json new file mode 100644 index 0000000..89744d2 --- /dev/null +++ b/public/organe/PO792236.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792236", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Pyr\u00e9n\u00e9es", "libelleEdition": "de la circonscription", "libelleAbrege": "65 Hautes-Pyr\u00e9n\u00e9es (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "65", "libelle": "Hautes-Pyr\u00e9n\u00e9es"}}}} \ No newline at end of file diff --git a/public/organe/PO792238.json b/public/organe/PO792238.json new file mode 100644 index 0000000..67d82ef --- /dev/null +++ b/public/organe/PO792238.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792238", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792240.json b/public/organe/PO792240.json new file mode 100644 index 0000000..a39d92f --- /dev/null +++ b/public/organe/PO792240.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792240", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792242.json b/public/organe/PO792242.json new file mode 100644 index 0000000..930faa0 --- /dev/null +++ b/public/organe/PO792242.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792242", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792244.json b/public/organe/PO792244.json new file mode 100644 index 0000000..28c520c --- /dev/null +++ b/public/organe/PO792244.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792244", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792246.json b/public/organe/PO792246.json new file mode 100644 index 0000000..e12b730 --- /dev/null +++ b/public/organe/PO792246.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792246", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792248.json b/public/organe/PO792248.json new file mode 100644 index 0000000..7d24b8b --- /dev/null +++ b/public/organe/PO792248.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792248", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792250.json b/public/organe/PO792250.json new file mode 100644 index 0000000..2ed947f --- /dev/null +++ b/public/organe/PO792250.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792250", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792252.json b/public/organe/PO792252.json new file mode 100644 index 0000000..2f684f3 --- /dev/null +++ b/public/organe/PO792252.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792252", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Bas-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "67 Bas-Rhin (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "67", "libelle": "Bas-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792254.json b/public/organe/PO792254.json new file mode 100644 index 0000000..d3f1690 --- /dev/null +++ b/public/organe/PO792254.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792254", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792256.json b/public/organe/PO792256.json new file mode 100644 index 0000000..3bf4270 --- /dev/null +++ b/public/organe/PO792256.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792256", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Sa\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "70 Haute-Sa\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "70", "libelle": "Haute-Sa\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792258.json b/public/organe/PO792258.json new file mode 100644 index 0000000..128fddc --- /dev/null +++ b/public/organe/PO792258.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792258", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792260.json b/public/organe/PO792260.json new file mode 100644 index 0000000..9c1d4a4 --- /dev/null +++ b/public/organe/PO792260.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792260", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792262.json b/public/organe/PO792262.json new file mode 100644 index 0000000..4154d3e --- /dev/null +++ b/public/organe/PO792262.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792262", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792264.json b/public/organe/PO792264.json new file mode 100644 index 0000000..06abeda --- /dev/null +++ b/public/organe/PO792264.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792264", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Haut-Rhin", "libelleEdition": "de la circonscription", "libelleAbrege": "68 Haut-Rhin (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "68", "libelle": "Haut-Rhin"}}}} \ No newline at end of file diff --git a/public/organe/PO792266.json b/public/organe/PO792266.json new file mode 100644 index 0000000..5a477f1 --- /dev/null +++ b/public/organe/PO792266.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792266", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792268.json b/public/organe/PO792268.json new file mode 100644 index 0000000..1dc1a56 --- /dev/null +++ b/public/organe/PO792268.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792268", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792270.json b/public/organe/PO792270.json new file mode 100644 index 0000000..60a9333 --- /dev/null +++ b/public/organe/PO792270.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792270", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792272.json b/public/organe/PO792272.json new file mode 100644 index 0000000..7489cd6 --- /dev/null +++ b/public/organe/PO792272.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792272", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792274.json b/public/organe/PO792274.json new file mode 100644 index 0000000..f96ef71 --- /dev/null +++ b/public/organe/PO792274.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792274", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792276.json b/public/organe/PO792276.json new file mode 100644 index 0000000..b5255bd --- /dev/null +++ b/public/organe/PO792276.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792276", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792278.json b/public/organe/PO792278.json new file mode 100644 index 0000000..c92944c --- /dev/null +++ b/public/organe/PO792278.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792278", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792280.json b/public/organe/PO792280.json new file mode 100644 index 0000000..cbea282 --- /dev/null +++ b/public/organe/PO792280.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792280", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792282.json b/public/organe/PO792282.json new file mode 100644 index 0000000..dd924d6 --- /dev/null +++ b/public/organe/PO792282.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792282", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792284.json b/public/organe/PO792284.json new file mode 100644 index 0000000..ef02d82 --- /dev/null +++ b/public/organe/PO792284.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792284", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792286.json b/public/organe/PO792286.json new file mode 100644 index 0000000..d0f12b9 --- /dev/null +++ b/public/organe/PO792286.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792286", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792288.json b/public/organe/PO792288.json new file mode 100644 index 0000000..f4555c4 --- /dev/null +++ b/public/organe/PO792288.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792288", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792290.json b/public/organe/PO792290.json new file mode 100644 index 0000000..65790a5 --- /dev/null +++ b/public/organe/PO792290.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792290", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792292.json b/public/organe/PO792292.json new file mode 100644 index 0000000..5fba1ba --- /dev/null +++ b/public/organe/PO792292.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792292", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792294.json b/public/organe/PO792294.json new file mode 100644 index 0000000..d123eef --- /dev/null +++ b/public/organe/PO792294.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792294", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792296.json b/public/organe/PO792296.json new file mode 100644 index 0000000..7e6d436 --- /dev/null +++ b/public/organe/PO792296.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792296", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "69 Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "69", "libelle": "Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792298.json b/public/organe/PO792298.json new file mode 100644 index 0000000..e14667c --- /dev/null +++ b/public/organe/PO792298.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792298", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792300.json b/public/organe/PO792300.json new file mode 100644 index 0000000..a521e9e --- /dev/null +++ b/public/organe/PO792300.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792300", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792302.json b/public/organe/PO792302.json new file mode 100644 index 0000000..f3e32f3 --- /dev/null +++ b/public/organe/PO792302.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792302", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO792304.json b/public/organe/PO792304.json new file mode 100644 index 0000000..4ff692d --- /dev/null +++ b/public/organe/PO792304.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792304", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO792306.json b/public/organe/PO792306.json new file mode 100644 index 0000000..fa14908 --- /dev/null +++ b/public/organe/PO792306.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792306", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO792308.json b/public/organe/PO792308.json new file mode 100644 index 0000000..00b0bca --- /dev/null +++ b/public/organe/PO792308.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792308", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO792310.json b/public/organe/PO792310.json new file mode 100644 index 0000000..0a35dc3 --- /dev/null +++ b/public/organe/PO792310.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792310", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792312.json b/public/organe/PO792312.json new file mode 100644 index 0000000..c1079c3 --- /dev/null +++ b/public/organe/PO792312.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792312", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792314.json b/public/organe/PO792314.json new file mode 100644 index 0000000..7b05394 --- /dev/null +++ b/public/organe/PO792314.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792314", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Sarthe", "libelleEdition": "de la circonscription", "libelleAbrege": "72 Sarthe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "72", "libelle": "Sarthe"}}}} \ No newline at end of file diff --git a/public/organe/PO792316.json b/public/organe/PO792316.json new file mode 100644 index 0000000..b586ace --- /dev/null +++ b/public/organe/PO792316.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792316", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Sa\u00f4ne-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "71 Sa\u00f4ne-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "71", "libelle": "Sa\u00f4ne-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO792318.json b/public/organe/PO792318.json new file mode 100644 index 0000000..1f53208 --- /dev/null +++ b/public/organe/PO792318.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792318", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792320.json b/public/organe/PO792320.json new file mode 100644 index 0000000..9a005e1 --- /dev/null +++ b/public/organe/PO792320.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792320", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792322.json b/public/organe/PO792322.json new file mode 100644 index 0000000..a3fd4ea --- /dev/null +++ b/public/organe/PO792322.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792322", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792324.json b/public/organe/PO792324.json new file mode 100644 index 0000000..ff9a7fb --- /dev/null +++ b/public/organe/PO792324.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792324", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792326.json b/public/organe/PO792326.json new file mode 100644 index 0000000..e9337e2 --- /dev/null +++ b/public/organe/PO792326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792326", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792328.json b/public/organe/PO792328.json new file mode 100644 index 0000000..74de0d5 --- /dev/null +++ b/public/organe/PO792328.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792328", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792330.json b/public/organe/PO792330.json new file mode 100644 index 0000000..2ba8ca7 --- /dev/null +++ b/public/organe/PO792330.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792330", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792332.json b/public/organe/PO792332.json new file mode 100644 index 0000000..7843914 --- /dev/null +++ b/public/organe/PO792332.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792332", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792334.json b/public/organe/PO792334.json new file mode 100644 index 0000000..aeacc03 --- /dev/null +++ b/public/organe/PO792334.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792334", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792336.json b/public/organe/PO792336.json new file mode 100644 index 0000000..58fd8ab --- /dev/null +++ b/public/organe/PO792336.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792336", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792338.json b/public/organe/PO792338.json new file mode 100644 index 0000000..79195fd --- /dev/null +++ b/public/organe/PO792338.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792338", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792340.json b/public/organe/PO792340.json new file mode 100644 index 0000000..c048a0d --- /dev/null +++ b/public/organe/PO792340.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792340", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792342.json b/public/organe/PO792342.json new file mode 100644 index 0000000..79a9fcc --- /dev/null +++ b/public/organe/PO792342.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792342", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792344.json b/public/organe/PO792344.json new file mode 100644 index 0000000..5861502 --- /dev/null +++ b/public/organe/PO792344.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792344", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792346.json b/public/organe/PO792346.json new file mode 100644 index 0000000..dda28ba --- /dev/null +++ b/public/organe/PO792346.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792346", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792348.json b/public/organe/PO792348.json new file mode 100644 index 0000000..d54960d --- /dev/null +++ b/public/organe/PO792348.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792348", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792350.json b/public/organe/PO792350.json new file mode 100644 index 0000000..37f50f0 --- /dev/null +++ b/public/organe/PO792350.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792350", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792352.json b/public/organe/PO792352.json new file mode 100644 index 0000000..274c49c --- /dev/null +++ b/public/organe/PO792352.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792352", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792354.json b/public/organe/PO792354.json new file mode 100644 index 0000000..5d21097 --- /dev/null +++ b/public/organe/PO792354.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792354", "codeType": "CIRCONSCRIPTION", "libelle": "18\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b018\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "18", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792356.json b/public/organe/PO792356.json new file mode 100644 index 0000000..bba957c --- /dev/null +++ b/public/organe/PO792356.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792356", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792358.json b/public/organe/PO792358.json new file mode 100644 index 0000000..e2507bd --- /dev/null +++ b/public/organe/PO792358.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792358", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792360.json b/public/organe/PO792360.json new file mode 100644 index 0000000..5e2ac5f --- /dev/null +++ b/public/organe/PO792360.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792360", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792362.json b/public/organe/PO792362.json new file mode 100644 index 0000000..6e25228 --- /dev/null +++ b/public/organe/PO792362.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792362", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792364.json b/public/organe/PO792364.json new file mode 100644 index 0000000..374e8c3 --- /dev/null +++ b/public/organe/PO792364.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792364", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792366.json b/public/organe/PO792366.json new file mode 100644 index 0000000..a5eff15 --- /dev/null +++ b/public/organe/PO792366.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792366", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792368.json b/public/organe/PO792368.json new file mode 100644 index 0000000..33283e6 --- /dev/null +++ b/public/organe/PO792368.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792368", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792370.json b/public/organe/PO792370.json new file mode 100644 index 0000000..c9d6eaa --- /dev/null +++ b/public/organe/PO792370.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792370", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792372.json b/public/organe/PO792372.json new file mode 100644 index 0000000..0817026 --- /dev/null +++ b/public/organe/PO792372.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792372", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792374.json b/public/organe/PO792374.json new file mode 100644 index 0000000..4918fcd --- /dev/null +++ b/public/organe/PO792374.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792374", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792376.json b/public/organe/PO792376.json new file mode 100644 index 0000000..f065ba7 --- /dev/null +++ b/public/organe/PO792376.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792376", "codeType": "CIRCONSCRIPTION", "libelle": "17\u00e8me circonscription de Paris", "libelleEdition": "de la circonscription", "libelleAbrege": "75 Paris (\u00b017\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "17", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "75", "libelle": "Paris"}}}} \ No newline at end of file diff --git a/public/organe/PO792378.json b/public/organe/PO792378.json new file mode 100644 index 0000000..2577f6a --- /dev/null +++ b/public/organe/PO792378.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792378", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792380.json b/public/organe/PO792380.json new file mode 100644 index 0000000..7d08374 --- /dev/null +++ b/public/organe/PO792380.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792380", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "76 Seine-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "76", "libelle": "Seine-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792382.json b/public/organe/PO792382.json new file mode 100644 index 0000000..ceb4d55 --- /dev/null +++ b/public/organe/PO792382.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792382", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792384.json b/public/organe/PO792384.json new file mode 100644 index 0000000..05e80f1 --- /dev/null +++ b/public/organe/PO792384.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792384", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792386.json b/public/organe/PO792386.json new file mode 100644 index 0000000..71a3db0 --- /dev/null +++ b/public/organe/PO792386.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792386", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792388.json b/public/organe/PO792388.json new file mode 100644 index 0000000..16e1d20 --- /dev/null +++ b/public/organe/PO792388.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792388", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792390.json b/public/organe/PO792390.json new file mode 100644 index 0000000..d74f106 --- /dev/null +++ b/public/organe/PO792390.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792390", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792392.json b/public/organe/PO792392.json new file mode 100644 index 0000000..f10c88f --- /dev/null +++ b/public/organe/PO792392.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792392", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792394.json b/public/organe/PO792394.json new file mode 100644 index 0000000..8ed2f04 --- /dev/null +++ b/public/organe/PO792394.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792394", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792396.json b/public/organe/PO792396.json new file mode 100644 index 0000000..8f46da3 --- /dev/null +++ b/public/organe/PO792396.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792396", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792398.json b/public/organe/PO792398.json new file mode 100644 index 0000000..7d96809 --- /dev/null +++ b/public/organe/PO792398.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792398", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO792400.json b/public/organe/PO792400.json new file mode 100644 index 0000000..bf883af --- /dev/null +++ b/public/organe/PO792400.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792400", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO792402.json b/public/organe/PO792402.json new file mode 100644 index 0000000..4aeda1a --- /dev/null +++ b/public/organe/PO792402.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792402", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO792404.json b/public/organe/PO792404.json new file mode 100644 index 0000000..50b0bcc --- /dev/null +++ b/public/organe/PO792404.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792404", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO792406.json b/public/organe/PO792406.json new file mode 100644 index 0000000..7b1b016 --- /dev/null +++ b/public/organe/PO792406.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792406", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792408.json b/public/organe/PO792408.json new file mode 100644 index 0000000..00c3e05 --- /dev/null +++ b/public/organe/PO792408.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792408", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792410.json b/public/organe/PO792410.json new file mode 100644 index 0000000..7381557 --- /dev/null +++ b/public/organe/PO792410.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792410", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO792412.json b/public/organe/PO792412.json new file mode 100644 index 0000000..c7b8946 --- /dev/null +++ b/public/organe/PO792412.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792412", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792414.json b/public/organe/PO792414.json new file mode 100644 index 0000000..136c6f4 --- /dev/null +++ b/public/organe/PO792414.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792414", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792416.json b/public/organe/PO792416.json new file mode 100644 index 0000000..5a60627 --- /dev/null +++ b/public/organe/PO792416.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792416", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792418.json b/public/organe/PO792418.json new file mode 100644 index 0000000..3fa64c9 --- /dev/null +++ b/public/organe/PO792418.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792418", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO792420.json b/public/organe/PO792420.json new file mode 100644 index 0000000..7b1e95e --- /dev/null +++ b/public/organe/PO792420.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792420", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792422.json b/public/organe/PO792422.json new file mode 100644 index 0000000..0fd7158 --- /dev/null +++ b/public/organe/PO792422.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792422", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792424.json b/public/organe/PO792424.json new file mode 100644 index 0000000..7a38d05 --- /dev/null +++ b/public/organe/PO792424.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792424", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Somme", "libelleEdition": "de la circonscription", "libelleAbrege": "80 Somme (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "80", "libelle": "Somme"}}}} \ No newline at end of file diff --git a/public/organe/PO792426.json b/public/organe/PO792426.json new file mode 100644 index 0000000..275a2df --- /dev/null +++ b/public/organe/PO792426.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792426", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792428.json b/public/organe/PO792428.json new file mode 100644 index 0000000..049ea0f --- /dev/null +++ b/public/organe/PO792428.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792428", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Yvelines", "libelleEdition": "de la circonscription", "libelleAbrege": "78 Yvelines (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "78", "libelle": "Yvelines"}}}} \ No newline at end of file diff --git a/public/organe/PO792430.json b/public/organe/PO792430.json new file mode 100644 index 0000000..bcf6d2b --- /dev/null +++ b/public/organe/PO792430.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792430", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO792432.json b/public/organe/PO792432.json new file mode 100644 index 0000000..a4db6e0 --- /dev/null +++ b/public/organe/PO792432.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792432", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO792434.json b/public/organe/PO792434.json new file mode 100644 index 0000000..7d93068 --- /dev/null +++ b/public/organe/PO792434.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792434", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO792436.json b/public/organe/PO792436.json new file mode 100644 index 0000000..c1bd301 --- /dev/null +++ b/public/organe/PO792436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792436", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO792438.json b/public/organe/PO792438.json new file mode 100644 index 0000000..6ee0e66 --- /dev/null +++ b/public/organe/PO792438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792438", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO792440.json b/public/organe/PO792440.json new file mode 100644 index 0000000..0e69a39 --- /dev/null +++ b/public/organe/PO792440.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792440", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Deux-S\u00e8vres", "libelleEdition": "de la circonscription", "libelleAbrege": "79 Deux-S\u00e8vres (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "79", "libelle": "Deux-S\u00e8vres"}}}} \ No newline at end of file diff --git a/public/organe/PO792442.json b/public/organe/PO792442.json new file mode 100644 index 0000000..ff3ef28 --- /dev/null +++ b/public/organe/PO792442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792442", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO792444.json b/public/organe/PO792444.json new file mode 100644 index 0000000..7ecc05a --- /dev/null +++ b/public/organe/PO792444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792444", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO792446.json b/public/organe/PO792446.json new file mode 100644 index 0000000..70d9ff5 --- /dev/null +++ b/public/organe/PO792446.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792446", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792448.json b/public/organe/PO792448.json new file mode 100644 index 0000000..421bd96 --- /dev/null +++ b/public/organe/PO792448.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792448", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn-et-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "82 Tarn-et-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "82", "libelle": "Tarn-et-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792450.json b/public/organe/PO792450.json new file mode 100644 index 0000000..4e1a765 --- /dev/null +++ b/public/organe/PO792450.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792450", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO792452.json b/public/organe/PO792452.json new file mode 100644 index 0000000..9c00edb --- /dev/null +++ b/public/organe/PO792452.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792452", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO792454.json b/public/organe/PO792454.json new file mode 100644 index 0000000..dde91a8 --- /dev/null +++ b/public/organe/PO792454.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792454", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO792456.json b/public/organe/PO792456.json new file mode 100644 index 0000000..6169375 --- /dev/null +++ b/public/organe/PO792456.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792456", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO792458.json b/public/organe/PO792458.json new file mode 100644 index 0000000..2f118a5 --- /dev/null +++ b/public/organe/PO792458.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792458", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO792460.json b/public/organe/PO792460.json new file mode 100644 index 0000000..093603e --- /dev/null +++ b/public/organe/PO792460.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792460", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Tarn", "libelleEdition": "de la circonscription", "libelleAbrege": "81 Tarn (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "81", "libelle": "Tarn"}}}} \ No newline at end of file diff --git a/public/organe/PO792462.json b/public/organe/PO792462.json new file mode 100644 index 0000000..df0452c --- /dev/null +++ b/public/organe/PO792462.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792462", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO792464.json b/public/organe/PO792464.json new file mode 100644 index 0000000..b112b54 --- /dev/null +++ b/public/organe/PO792464.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792464", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO792466.json b/public/organe/PO792466.json new file mode 100644 index 0000000..c5df1d0 --- /dev/null +++ b/public/organe/PO792466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792466", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO792468.json b/public/organe/PO792468.json new file mode 100644 index 0000000..373f91c --- /dev/null +++ b/public/organe/PO792468.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792468", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO792470.json b/public/organe/PO792470.json new file mode 100644 index 0000000..cff6c6f --- /dev/null +++ b/public/organe/PO792470.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792470", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO792472.json b/public/organe/PO792472.json new file mode 100644 index 0000000..75eaccc --- /dev/null +++ b/public/organe/PO792472.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792472", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO792474.json b/public/organe/PO792474.json new file mode 100644 index 0000000..2e6ea1a --- /dev/null +++ b/public/organe/PO792474.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792474", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO792476.json b/public/organe/PO792476.json new file mode 100644 index 0000000..72c195d --- /dev/null +++ b/public/organe/PO792476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792476", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "87 Haute-Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "87", "libelle": "Haute-Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO792478.json b/public/organe/PO792478.json new file mode 100644 index 0000000..a07fbcd --- /dev/null +++ b/public/organe/PO792478.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792478", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO792480.json b/public/organe/PO792480.json new file mode 100644 index 0000000..1d44448 --- /dev/null +++ b/public/organe/PO792480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792480", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO792482.json b/public/organe/PO792482.json new file mode 100644 index 0000000..b245062 --- /dev/null +++ b/public/organe/PO792482.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792482", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792484.json b/public/organe/PO792484.json new file mode 100644 index 0000000..7a86eac --- /dev/null +++ b/public/organe/PO792484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792484", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Vienne", "libelleEdition": "de la circonscription", "libelleAbrege": "86 Vienne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "86", "libelle": "Vienne"}}}} \ No newline at end of file diff --git a/public/organe/PO792486.json b/public/organe/PO792486.json new file mode 100644 index 0000000..0c82016 --- /dev/null +++ b/public/organe/PO792486.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792486", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO792488.json b/public/organe/PO792488.json new file mode 100644 index 0000000..2d6e16a --- /dev/null +++ b/public/organe/PO792488.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792488", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO792490.json b/public/organe/PO792490.json new file mode 100644 index 0000000..d9cc282 --- /dev/null +++ b/public/organe/PO792490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792490", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO792492.json b/public/organe/PO792492.json new file mode 100644 index 0000000..cb17c3f --- /dev/null +++ b/public/organe/PO792492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792492", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Vend\u00e9e", "libelleEdition": "de la circonscription", "libelleAbrege": "85 Vend\u00e9e (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Pays de la Loire"}, "departement": {"codeNatureDep": "M", "code": "85", "libelle": "Vend\u00e9e"}}}} \ No newline at end of file diff --git a/public/organe/PO792494.json b/public/organe/PO792494.json new file mode 100644 index 0000000..a0b3053 --- /dev/null +++ b/public/organe/PO792494.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792494", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792496.json b/public/organe/PO792496.json new file mode 100644 index 0000000..b8c6e43 --- /dev/null +++ b/public/organe/PO792496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792496", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792498.json b/public/organe/PO792498.json new file mode 100644 index 0000000..58257c5 --- /dev/null +++ b/public/organe/PO792498.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792498", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO792500.json b/public/organe/PO792500.json new file mode 100644 index 0000000..ebf3817 --- /dev/null +++ b/public/organe/PO792500.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792500", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792502.json b/public/organe/PO792502.json new file mode 100644 index 0000000..9c5801b --- /dev/null +++ b/public/organe/PO792502.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792502", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792504.json b/public/organe/PO792504.json new file mode 100644 index 0000000..8c81bb4 --- /dev/null +++ b/public/organe/PO792504.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792504", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792506.json b/public/organe/PO792506.json new file mode 100644 index 0000000..238634a --- /dev/null +++ b/public/organe/PO792506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792506", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792508.json b/public/organe/PO792508.json new file mode 100644 index 0000000..7c855e0 --- /dev/null +++ b/public/organe/PO792508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792508", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792510.json b/public/organe/PO792510.json new file mode 100644 index 0000000..8b784c1 --- /dev/null +++ b/public/organe/PO792510.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792510", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792512.json b/public/organe/PO792512.json new file mode 100644 index 0000000..5280ebd --- /dev/null +++ b/public/organe/PO792512.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792512", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792514.json b/public/organe/PO792514.json new file mode 100644 index 0000000..5f5aed8 --- /dev/null +++ b/public/organe/PO792514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792514", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792516.json b/public/organe/PO792516.json new file mode 100644 index 0000000..b0bb2c7 --- /dev/null +++ b/public/organe/PO792516.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792516", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO792518.json b/public/organe/PO792518.json new file mode 100644 index 0000000..e417b52 --- /dev/null +++ b/public/organe/PO792518.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792518", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792520.json b/public/organe/PO792520.json new file mode 100644 index 0000000..19444df --- /dev/null +++ b/public/organe/PO792520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792520", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Vosges", "libelleEdition": "de la circonscription", "libelleAbrege": "88 Vosges (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "88", "libelle": "Vosges"}}}} \ No newline at end of file diff --git a/public/organe/PO792522.json b/public/organe/PO792522.json new file mode 100644 index 0000000..677402b --- /dev/null +++ b/public/organe/PO792522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792522", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Territoire de Belfort", "libelleEdition": "de la circonscription", "libelleAbrege": "90 Territoire de Belfort (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "90", "libelle": "Territoire de Belfort"}}}} \ No newline at end of file diff --git a/public/organe/PO792524.json b/public/organe/PO792524.json new file mode 100644 index 0000000..055d8fe --- /dev/null +++ b/public/organe/PO792524.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792524", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Yonne", "libelleEdition": "de la circonscription", "libelleAbrege": "89 Yonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "89", "libelle": "Yonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792526.json b/public/organe/PO792526.json new file mode 100644 index 0000000..f0a528c --- /dev/null +++ b/public/organe/PO792526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792526", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792528.json b/public/organe/PO792528.json new file mode 100644 index 0000000..18afc18 --- /dev/null +++ b/public/organe/PO792528.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792528", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792530.json b/public/organe/PO792530.json new file mode 100644 index 0000000..f0d0e7d --- /dev/null +++ b/public/organe/PO792530.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792530", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792532.json b/public/organe/PO792532.json new file mode 100644 index 0000000..9cf04cc --- /dev/null +++ b/public/organe/PO792532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792532", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792534.json b/public/organe/PO792534.json new file mode 100644 index 0000000..d696913 --- /dev/null +++ b/public/organe/PO792534.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792534", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792536.json b/public/organe/PO792536.json new file mode 100644 index 0000000..8b28439 --- /dev/null +++ b/public/organe/PO792536.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792536", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792538.json b/public/organe/PO792538.json new file mode 100644 index 0000000..495161a --- /dev/null +++ b/public/organe/PO792538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792538", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792540.json b/public/organe/PO792540.json new file mode 100644 index 0000000..8f78ace --- /dev/null +++ b/public/organe/PO792540.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792540", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792542.json b/public/organe/PO792542.json new file mode 100644 index 0000000..45e94b8 --- /dev/null +++ b/public/organe/PO792542.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792542", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792544.json b/public/organe/PO792544.json new file mode 100644 index 0000000..067e20b --- /dev/null +++ b/public/organe/PO792544.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792544", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792546.json b/public/organe/PO792546.json new file mode 100644 index 0000000..2c32404 --- /dev/null +++ b/public/organe/PO792546.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792546", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792548.json b/public/organe/PO792548.json new file mode 100644 index 0000000..232edb5 --- /dev/null +++ b/public/organe/PO792548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792548", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792550.json b/public/organe/PO792550.json new file mode 100644 index 0000000..dc44c6e --- /dev/null +++ b/public/organe/PO792550.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792550", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792552.json b/public/organe/PO792552.json new file mode 100644 index 0000000..1dc86b6 --- /dev/null +++ b/public/organe/PO792552.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792552", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Essonne", "libelleEdition": "de la circonscription", "libelleAbrege": "91 Essonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "91", "libelle": "Essonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792554.json b/public/organe/PO792554.json new file mode 100644 index 0000000..f4c09e3 --- /dev/null +++ b/public/organe/PO792554.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792554", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792556.json b/public/organe/PO792556.json new file mode 100644 index 0000000..996a031 --- /dev/null +++ b/public/organe/PO792556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792556", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hauts-de-Seine", "libelleEdition": "de la circonscription", "libelleAbrege": "92 Hauts-de-Seine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "92", "libelle": "Hauts-de-Seine"}}}} \ No newline at end of file diff --git a/public/organe/PO792558.json b/public/organe/PO792558.json new file mode 100644 index 0000000..269b58f --- /dev/null +++ b/public/organe/PO792558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792558", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792560.json b/public/organe/PO792560.json new file mode 100644 index 0000000..3232eb7 --- /dev/null +++ b/public/organe/PO792560.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792560", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792562.json b/public/organe/PO792562.json new file mode 100644 index 0000000..789c787 --- /dev/null +++ b/public/organe/PO792562.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792562", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792564.json b/public/organe/PO792564.json new file mode 100644 index 0000000..cb3cd97 --- /dev/null +++ b/public/organe/PO792564.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792564", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792566.json b/public/organe/PO792566.json new file mode 100644 index 0000000..4379780 --- /dev/null +++ b/public/organe/PO792566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792566", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792568.json b/public/organe/PO792568.json new file mode 100644 index 0000000..8ea5407 --- /dev/null +++ b/public/organe/PO792568.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792568", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792570.json b/public/organe/PO792570.json new file mode 100644 index 0000000..728a920 --- /dev/null +++ b/public/organe/PO792570.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792570", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792572.json b/public/organe/PO792572.json new file mode 100644 index 0000000..572950b --- /dev/null +++ b/public/organe/PO792572.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792572", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792574.json b/public/organe/PO792574.json new file mode 100644 index 0000000..6197faf --- /dev/null +++ b/public/organe/PO792574.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792574", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792576.json b/public/organe/PO792576.json new file mode 100644 index 0000000..f35df86 --- /dev/null +++ b/public/organe/PO792576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792576", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792578.json b/public/organe/PO792578.json new file mode 100644 index 0000000..f740f3f --- /dev/null +++ b/public/organe/PO792578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792578", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792580.json b/public/organe/PO792580.json new file mode 100644 index 0000000..c369f2c --- /dev/null +++ b/public/organe/PO792580.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792580", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792582.json b/public/organe/PO792582.json new file mode 100644 index 0000000..fad3c22 --- /dev/null +++ b/public/organe/PO792582.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792582", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792584.json b/public/organe/PO792584.json new file mode 100644 index 0000000..f99702c --- /dev/null +++ b/public/organe/PO792584.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792584", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792586.json b/public/organe/PO792586.json new file mode 100644 index 0000000..36d748e --- /dev/null +++ b/public/organe/PO792586.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792586", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792588.json b/public/organe/PO792588.json new file mode 100644 index 0000000..427773d --- /dev/null +++ b/public/organe/PO792588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792588", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de Seine-Saint-Denis", "libelleEdition": "de la circonscription", "libelleAbrege": "93 Seine-Saint-Denis (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "93", "libelle": "Seine-Saint-Denis"}}}} \ No newline at end of file diff --git a/public/organe/PO792590.json b/public/organe/PO792590.json new file mode 100644 index 0000000..c173491 --- /dev/null +++ b/public/organe/PO792590.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792590", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO792592.json b/public/organe/PO792592.json new file mode 100644 index 0000000..29b8aec --- /dev/null +++ b/public/organe/PO792592.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792592", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792594.json b/public/organe/PO792594.json new file mode 100644 index 0000000..1393cde --- /dev/null +++ b/public/organe/PO792594.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792594", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO792596.json b/public/organe/PO792596.json new file mode 100644 index 0000000..43da310 --- /dev/null +++ b/public/organe/PO792596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792596", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792598.json b/public/organe/PO792598.json new file mode 100644 index 0000000..957051c --- /dev/null +++ b/public/organe/PO792598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792598", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO792600.json b/public/organe/PO792600.json new file mode 100644 index 0000000..6199056 --- /dev/null +++ b/public/organe/PO792600.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792600", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792602.json b/public/organe/PO792602.json new file mode 100644 index 0000000..6046bee --- /dev/null +++ b/public/organe/PO792602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792602", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO792604.json b/public/organe/PO792604.json new file mode 100644 index 0000000..a809de5 --- /dev/null +++ b/public/organe/PO792604.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792604", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792606.json b/public/organe/PO792606.json new file mode 100644 index 0000000..50b8635 --- /dev/null +++ b/public/organe/PO792606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792606", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792608.json b/public/organe/PO792608.json new file mode 100644 index 0000000..99b3171 --- /dev/null +++ b/public/organe/PO792608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792608", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792610.json b/public/organe/PO792610.json new file mode 100644 index 0000000..accf818 --- /dev/null +++ b/public/organe/PO792610.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792610", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO792612.json b/public/organe/PO792612.json new file mode 100644 index 0000000..88eb4b9 --- /dev/null +++ b/public/organe/PO792612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792612", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792614.json b/public/organe/PO792614.json new file mode 100644 index 0000000..ec60729 --- /dev/null +++ b/public/organe/PO792614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792614", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792616.json b/public/organe/PO792616.json new file mode 100644 index 0000000..4257b4b --- /dev/null +++ b/public/organe/PO792616.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792616", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO792618.json b/public/organe/PO792618.json new file mode 100644 index 0000000..d1efcab --- /dev/null +++ b/public/organe/PO792618.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792618", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO792620.json b/public/organe/PO792620.json new file mode 100644 index 0000000..a1767ca --- /dev/null +++ b/public/organe/PO792620.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792620", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO792622.json b/public/organe/PO792622.json new file mode 100644 index 0000000..aa4fd49 --- /dev/null +++ b/public/organe/PO792622.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792622", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792624.json b/public/organe/PO792624.json new file mode 100644 index 0000000..2ebedbd --- /dev/null +++ b/public/organe/PO792624.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792624", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO792626.json b/public/organe/PO792626.json new file mode 100644 index 0000000..866184b --- /dev/null +++ b/public/organe/PO792626.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792626", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO792628.json b/public/organe/PO792628.json new file mode 100644 index 0000000..66c9a97 --- /dev/null +++ b/public/organe/PO792628.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792628", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO792630.json b/public/organe/PO792630.json new file mode 100644 index 0000000..03d2d3e --- /dev/null +++ b/public/organe/PO792630.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792630", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guyane", "libelleEdition": "de la circonscription", "libelleAbrege": "973 Guyane (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guyane"}, "departement": {"codeNatureDep": "O", "code": "973", "libelle": "Guyane"}}}} \ No newline at end of file diff --git a/public/organe/PO792632.json b/public/organe/PO792632.json new file mode 100644 index 0000000..3244a9d --- /dev/null +++ b/public/organe/PO792632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792632", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO792634.json b/public/organe/PO792634.json new file mode 100644 index 0000000..af00311 --- /dev/null +++ b/public/organe/PO792634.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792634", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792636.json b/public/organe/PO792636.json new file mode 100644 index 0000000..674faa9 --- /dev/null +++ b/public/organe/PO792636.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792636", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Aisne", "libelleEdition": "de la circonscription", "libelleAbrege": "02 Aisne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Hauts-de-France"}, "departement": {"codeNatureDep": "M", "code": "02", "libelle": "Aisne"}}}} \ No newline at end of file diff --git a/public/organe/PO792638.json b/public/organe/PO792638.json new file mode 100644 index 0000000..fe6a9d8 --- /dev/null +++ b/public/organe/PO792638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792638", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792640.json b/public/organe/PO792640.json new file mode 100644 index 0000000..316a9b0 --- /dev/null +++ b/public/organe/PO792640.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792640", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO792642.json b/public/organe/PO792642.json new file mode 100644 index 0000000..188834a --- /dev/null +++ b/public/organe/PO792642.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792642", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792644.json b/public/organe/PO792644.json new file mode 100644 index 0000000..35db75b --- /dev/null +++ b/public/organe/PO792644.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792644", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO792646.json b/public/organe/PO792646.json new file mode 100644 index 0000000..1ce1a81 --- /dev/null +++ b/public/organe/PO792646.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792646", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription du Val-de-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "94 Val-de-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "94", "libelle": "Val-de-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792648.json b/public/organe/PO792648.json new file mode 100644 index 0000000..46b6a15 --- /dev/null +++ b/public/organe/PO792648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792648", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO792650.json b/public/organe/PO792650.json new file mode 100644 index 0000000..f2c8dfd --- /dev/null +++ b/public/organe/PO792650.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792650", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO792652.json b/public/organe/PO792652.json new file mode 100644 index 0000000..fdec174 --- /dev/null +++ b/public/organe/PO792652.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792652", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO792654.json b/public/organe/PO792654.json new file mode 100644 index 0000000..d126603 --- /dev/null +++ b/public/organe/PO792654.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792654", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO792656.json b/public/organe/PO792656.json new file mode 100644 index 0000000..156ed79 --- /dev/null +++ b/public/organe/PO792656.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792656", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO792658.json b/public/organe/PO792658.json new file mode 100644 index 0000000..f1a2d9e --- /dev/null +++ b/public/organe/PO792658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792658", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO792660.json b/public/organe/PO792660.json new file mode 100644 index 0000000..116ecb6 --- /dev/null +++ b/public/organe/PO792660.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792660", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Allier", "libelleEdition": "de la circonscription", "libelleAbrege": "03 Allier (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "03", "libelle": "Allier"}}}} \ No newline at end of file diff --git a/public/organe/PO792662.json b/public/organe/PO792662.json new file mode 100644 index 0000000..25c8018 --- /dev/null +++ b/public/organe/PO792662.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792662", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO792664.json b/public/organe/PO792664.json new file mode 100644 index 0000000..211f967 --- /dev/null +++ b/public/organe/PO792664.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792664", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO792666.json b/public/organe/PO792666.json new file mode 100644 index 0000000..39b0e76 --- /dev/null +++ b/public/organe/PO792666.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792666", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO792668.json b/public/organe/PO792668.json new file mode 100644 index 0000000..0290423 --- /dev/null +++ b/public/organe/PO792668.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792668", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO792670.json b/public/organe/PO792670.json new file mode 100644 index 0000000..75f9478 --- /dev/null +++ b/public/organe/PO792670.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792670", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO792672.json b/public/organe/PO792672.json new file mode 100644 index 0000000..dbcd5d6 --- /dev/null +++ b/public/organe/PO792672.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792672", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO792674.json b/public/organe/PO792674.json new file mode 100644 index 0000000..c777f51 --- /dev/null +++ b/public/organe/PO792674.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792674", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Pierre-et-Miquelon", "libelleEdition": "de la circonscription", "libelleAbrege": "975 Saint-Pierre-et-Miquelon (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Pierre-et-Miquelon"}, "departement": {"codeNatureDep": "T", "code": "975", "libelle": "Saint-Pierre-et-Miquelon"}}}} \ No newline at end of file diff --git a/public/organe/PO792676.json b/public/organe/PO792676.json new file mode 100644 index 0000000..6e1c395 --- /dev/null +++ b/public/organe/PO792676.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792676", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO792678.json b/public/organe/PO792678.json new file mode 100644 index 0000000..af3387e --- /dev/null +++ b/public/organe/PO792678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792678", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO792680.json b/public/organe/PO792680.json new file mode 100644 index 0000000..edf04e5 --- /dev/null +++ b/public/organe/PO792680.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792680", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO792682.json b/public/organe/PO792682.json new file mode 100644 index 0000000..bb3e33c --- /dev/null +++ b/public/organe/PO792682.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792682", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792684.json b/public/organe/PO792684.json new file mode 100644 index 0000000..886af7f --- /dev/null +++ b/public/organe/PO792684.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792684", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO792686.json b/public/organe/PO792686.json new file mode 100644 index 0000000..f48da9b --- /dev/null +++ b/public/organe/PO792686.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792686", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO792688.json b/public/organe/PO792688.json new file mode 100644 index 0000000..792c488 --- /dev/null +++ b/public/organe/PO792688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792688", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO792690.json b/public/organe/PO792690.json new file mode 100644 index 0000000..65098df --- /dev/null +++ b/public/organe/PO792690.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792690", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO792692.json b/public/organe/PO792692.json new file mode 100644 index 0000000..67bcc8e --- /dev/null +++ b/public/organe/PO792692.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792692", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO792694.json b/public/organe/PO792694.json new file mode 100644 index 0000000..edc4b33 --- /dev/null +++ b/public/organe/PO792694.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792694", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792696.json b/public/organe/PO792696.json new file mode 100644 index 0000000..c317ae1 --- /dev/null +++ b/public/organe/PO792696.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792696", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO792698.json b/public/organe/PO792698.json new file mode 100644 index 0000000..04758c7 --- /dev/null +++ b/public/organe/PO792698.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792698", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO792700.json b/public/organe/PO792700.json new file mode 100644 index 0000000..1b335cc --- /dev/null +++ b/public/organe/PO792700.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792700", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Alpes-de-Haute-Provence", "libelleEdition": "de la circonscription", "libelleAbrege": "04 Alpes-de-Haute-Provence (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "04", "libelle": "Alpes-de-Haute-Provence"}}}} \ No newline at end of file diff --git a/public/organe/PO792702.json b/public/organe/PO792702.json new file mode 100644 index 0000000..9c4ecfe --- /dev/null +++ b/public/organe/PO792702.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792702", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Guadeloupe", "libelleEdition": "de la circonscription", "libelleAbrege": "971 Guadeloupe (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "Dom", "libelle": "Guadeloupe"}, "departement": {"codeNatureDep": "O", "code": "971", "libelle": "Guadeloupe"}}}} \ No newline at end of file diff --git a/public/organe/PO792704.json b/public/organe/PO792704.json new file mode 100644 index 0000000..d985d0a --- /dev/null +++ b/public/organe/PO792704.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792704", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Alpes-Maritimes", "libelleEdition": "de la circonscription", "libelleAbrege": "06 Alpes-Maritimes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "06", "libelle": "Alpes-Maritimes"}}}} \ No newline at end of file diff --git a/public/organe/PO792706.json b/public/organe/PO792706.json new file mode 100644 index 0000000..8a0dc35 --- /dev/null +++ b/public/organe/PO792706.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792706", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO792708.json b/public/organe/PO792708.json new file mode 100644 index 0000000..6d86f5e --- /dev/null +++ b/public/organe/PO792708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792708", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Hautes-Alpes", "libelleEdition": "de la circonscription", "libelleAbrege": "05 Hautes-Alpes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "05", "libelle": "Hautes-Alpes"}}}} \ No newline at end of file diff --git a/public/organe/PO792710.json b/public/organe/PO792710.json new file mode 100644 index 0000000..05d3377 --- /dev/null +++ b/public/organe/PO792710.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792710", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Martinique", "libelleEdition": "de la circonscription", "libelleAbrege": "972 Martinique (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Martinique"}, "departement": {"codeNatureDep": "O", "code": "972", "libelle": "Martinique"}}}} \ No newline at end of file diff --git a/public/organe/PO792712.json b/public/organe/PO792712.json new file mode 100644 index 0000000..d6eed84 --- /dev/null +++ b/public/organe/PO792712.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792712", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO792714.json b/public/organe/PO792714.json new file mode 100644 index 0000000..441f7ec --- /dev/null +++ b/public/organe/PO792714.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792714", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Wallis-et-Futuna", "libelleEdition": "de la circonscription", "libelleAbrege": "986 Wallis-et-Futuna (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Wallis-et-Futuna"}, "departement": {"codeNatureDep": "T", "code": "986", "libelle": "Wallis-et-Futuna"}}}} \ No newline at end of file diff --git a/public/organe/PO792716.json b/public/organe/PO792716.json new file mode 100644 index 0000000..6e348f0 --- /dev/null +++ b/public/organe/PO792716.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792716", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO792718.json b/public/organe/PO792718.json new file mode 100644 index 0000000..cf97de1 --- /dev/null +++ b/public/organe/PO792718.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792718", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792720.json b/public/organe/PO792720.json new file mode 100644 index 0000000..7e02231 --- /dev/null +++ b/public/organe/PO792720.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792720", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO792722.json b/public/organe/PO792722.json new file mode 100644 index 0000000..3e285e8 --- /dev/null +++ b/public/organe/PO792722.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792722", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO792724.json b/public/organe/PO792724.json new file mode 100644 index 0000000..105a49e --- /dev/null +++ b/public/organe/PO792724.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792724", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ard\u00e8che", "libelleEdition": "de la circonscription", "libelleAbrege": "07 Ard\u00e8che (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "07", "libelle": "Ard\u00e8che"}}}} \ No newline at end of file diff --git a/public/organe/PO792726.json b/public/organe/PO792726.json new file mode 100644 index 0000000..9d10ae8 --- /dev/null +++ b/public/organe/PO792726.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792726", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Dom", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "O", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO792728.json b/public/organe/PO792728.json new file mode 100644 index 0000000..31f0880 --- /dev/null +++ b/public/organe/PO792728.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792728", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO792730.json b/public/organe/PO792730.json new file mode 100644 index 0000000..796c7c5 --- /dev/null +++ b/public/organe/PO792730.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792730", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO792732.json b/public/organe/PO792732.json new file mode 100644 index 0000000..3448131 --- /dev/null +++ b/public/organe/PO792732.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792732", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO792734.json b/public/organe/PO792734.json new file mode 100644 index 0000000..72053e0 --- /dev/null +++ b/public/organe/PO792734.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792734", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO792736.json b/public/organe/PO792736.json new file mode 100644 index 0000000..382f4be --- /dev/null +++ b/public/organe/PO792736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792736", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aveyron", "libelleEdition": "de la circonscription", "libelleAbrege": "12 Aveyron (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "12", "libelle": "Aveyron"}}}} \ No newline at end of file diff --git a/public/organe/PO792738.json b/public/organe/PO792738.json new file mode 100644 index 0000000..7ac9295 --- /dev/null +++ b/public/organe/PO792738.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792738", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Loiret", "libelleEdition": "de la circonscription", "libelleAbrege": "45 Loiret (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "45", "libelle": "Loiret"}}}} \ No newline at end of file diff --git a/public/organe/PO792740.json b/public/organe/PO792740.json new file mode 100644 index 0000000..b03ab9b --- /dev/null +++ b/public/organe/PO792740.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792740", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Aude", "libelleEdition": "de la circonscription", "libelleAbrege": "11 Aude (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "11", "libelle": "Aude"}}}} \ No newline at end of file diff --git a/public/organe/PO792742.json b/public/organe/PO792742.json new file mode 100644 index 0000000..613c237 --- /dev/null +++ b/public/organe/PO792742.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792742", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO792744.json b/public/organe/PO792744.json new file mode 100644 index 0000000..26b5755 --- /dev/null +++ b/public/organe/PO792744.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792744", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792746.json b/public/organe/PO792746.json new file mode 100644 index 0000000..f6300d2 --- /dev/null +++ b/public/organe/PO792746.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792746", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Mayotte", "libelleEdition": "de la circonscription", "libelleAbrege": "976 Mayotte (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "Dom", "libelle": "Mayotte"}, "departement": {"codeNatureDep": "O", "code": "976", "libelle": "Mayotte"}}}} \ No newline at end of file diff --git a/public/organe/PO792748.json b/public/organe/PO792748.json new file mode 100644 index 0000000..682b687 --- /dev/null +++ b/public/organe/PO792748.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792748", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ain", "libelleEdition": "de la circonscription", "libelleAbrege": "01 Ain (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "01", "libelle": "Ain"}}}} \ No newline at end of file diff --git a/public/organe/PO792750.json b/public/organe/PO792750.json new file mode 100644 index 0000000..7dfa57c --- /dev/null +++ b/public/organe/PO792750.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792750", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO792752.json b/public/organe/PO792752.json new file mode 100644 index 0000000..f3e2fb7 --- /dev/null +++ b/public/organe/PO792752.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792752", "codeType": "CIRCONSCRIPTION", "libelle": "12\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b012\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "12", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792754.json b/public/organe/PO792754.json new file mode 100644 index 0000000..b892f01 --- /dev/null +++ b/public/organe/PO792754.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792754", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO792756.json b/public/organe/PO792756.json new file mode 100644 index 0000000..a664c12 --- /dev/null +++ b/public/organe/PO792756.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792756", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792758.json b/public/organe/PO792758.json new file mode 100644 index 0000000..e87ce6d --- /dev/null +++ b/public/organe/PO792758.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792758", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO792760.json b/public/organe/PO792760.json new file mode 100644 index 0000000..25946ac --- /dev/null +++ b/public/organe/PO792760.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792760", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ari\u00e8ge", "libelleEdition": "de la circonscription", "libelleAbrege": "09 Ari\u00e8ge (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "09", "libelle": "Ari\u00e8ge"}}}} \ No newline at end of file diff --git a/public/organe/PO792762.json b/public/organe/PO792762.json new file mode 100644 index 0000000..649827f --- /dev/null +++ b/public/organe/PO792762.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792762", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO792764.json b/public/organe/PO792764.json new file mode 100644 index 0000000..9b14e6e --- /dev/null +++ b/public/organe/PO792764.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792764", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO792766.json b/public/organe/PO792766.json new file mode 100644 index 0000000..7b979ab --- /dev/null +++ b/public/organe/PO792766.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792766", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Polyn\u00e9sie-Fran\u00e7aise", "libelleEdition": "de la circonscription", "libelleAbrege": "987 Polyn\u00e9sie Fran\u00e7aise (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Polyn\u00e9sie fran\u00e7aise"}, "departement": {"codeNatureDep": "T", "code": "987", "libelle": "Polyn\u00e9sie Fran\u00e7aise"}}}} \ No newline at end of file diff --git a/public/organe/PO792768.json b/public/organe/PO792768.json new file mode 100644 index 0000000..dcf3501 --- /dev/null +++ b/public/organe/PO792768.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792768", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Aube", "libelleEdition": "de la circonscription", "libelleAbrege": "10 Aube (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "10", "libelle": "Aube"}}}} \ No newline at end of file diff --git a/public/organe/PO792770.json b/public/organe/PO792770.json new file mode 100644 index 0000000..668187c --- /dev/null +++ b/public/organe/PO792770.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792770", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO792772.json b/public/organe/PO792772.json new file mode 100644 index 0000000..0e6caaa --- /dev/null +++ b/public/organe/PO792772.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792772", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Ardennes", "libelleEdition": "de la circonscription", "libelleAbrege": "08 Ardennes (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Grand Est"}, "departement": {"codeNatureDep": "M", "code": "08", "libelle": "Ardennes"}}}} \ No newline at end of file diff --git a/public/organe/PO792774.json b/public/organe/PO792774.json new file mode 100644 index 0000000..090c4eb --- /dev/null +++ b/public/organe/PO792774.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792774", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Nouvelle-Cal\u00e9donie", "libelleEdition": "de la circonscription", "libelleAbrege": "988 Nouvelle-Cal\u00e9donie (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Nouvelle-Cal\u00e9donie"}, "departement": {"codeNatureDep": "T", "code": "988", "libelle": "Nouvelle-Cal\u00e9donie"}}}} \ No newline at end of file diff --git a/public/organe/PO792776.json b/public/organe/PO792776.json new file mode 100644 index 0000000..38eb857 --- /dev/null +++ b/public/organe/PO792776.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792776", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792778.json b/public/organe/PO792778.json new file mode 100644 index 0000000..17b4896 --- /dev/null +++ b/public/organe/PO792778.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792778", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "74 Haute-Savoie (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "74", "libelle": "Haute-Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792780.json b/public/organe/PO792780.json new file mode 100644 index 0000000..b450a6c --- /dev/null +++ b/public/organe/PO792780.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792780", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792782.json b/public/organe/PO792782.json new file mode 100644 index 0000000..2b0ce7d --- /dev/null +++ b/public/organe/PO792782.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792782", "codeType": "CIRCONSCRIPTION", "libelle": "15\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b015\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "15", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792784.json b/public/organe/PO792784.json new file mode 100644 index 0000000..8947cdb --- /dev/null +++ b/public/organe/PO792784.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792784", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792786.json b/public/organe/PO792786.json new file mode 100644 index 0000000..5ae70da --- /dev/null +++ b/public/organe/PO792786.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792786", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792788.json b/public/organe/PO792788.json new file mode 100644 index 0000000..6b4a6a8 --- /dev/null +++ b/public/organe/PO792788.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792788", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792790.json b/public/organe/PO792790.json new file mode 100644 index 0000000..21bf8d6 --- /dev/null +++ b/public/organe/PO792790.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792790", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Savoie", "libelleEdition": "de la circonscription", "libelleAbrege": "73 Savoie (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "73", "libelle": "Savoie"}}}} \ No newline at end of file diff --git a/public/organe/PO792792.json b/public/organe/PO792792.json new file mode 100644 index 0000000..fc861aa --- /dev/null +++ b/public/organe/PO792792.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792792", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792794.json b/public/organe/PO792794.json new file mode 100644 index 0000000..e4486de --- /dev/null +++ b/public/organe/PO792794.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792794", "codeType": "CIRCONSCRIPTION", "libelle": "14\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b014\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "14", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792796.json b/public/organe/PO792796.json new file mode 100644 index 0000000..7f84e10 --- /dev/null +++ b/public/organe/PO792796.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792796", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792798.json b/public/organe/PO792798.json new file mode 100644 index 0000000..b1ce4e9 --- /dev/null +++ b/public/organe/PO792798.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792798", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de Saint-Barth\u00e9l\u00e9my et Saint-Martin", "libelleEdition": "de la circonscription", "libelleAbrege": "977 Saint-Barth\u00e9lemy et Saint-Martin (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Collectivit\u00e9s d'outre-mer et Nouvelle-Cal\u00e9donie", "libelle": "Saint-Barth\u00e9lemy et Saint-Martin"}, "departement": {"codeNatureDep": "T", "code": "977", "libelle": "Saint-Barth\u00e9lemy et Saint-Martin"}}}} \ No newline at end of file diff --git a/public/organe/PO792800.json b/public/organe/PO792800.json new file mode 100644 index 0000000..228cfbb --- /dev/null +++ b/public/organe/PO792800.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792800", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792802.json b/public/organe/PO792802.json new file mode 100644 index 0000000..2bb110e --- /dev/null +++ b/public/organe/PO792802.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792802", "codeType": "CIRCONSCRIPTION", "libelle": "16\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b016\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "16", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792804.json b/public/organe/PO792804.json new file mode 100644 index 0000000..2296c74 --- /dev/null +++ b/public/organe/PO792804.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792804", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792806.json b/public/organe/PO792806.json new file mode 100644 index 0000000..ae002cf --- /dev/null +++ b/public/organe/PO792806.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792806", "codeType": "CIRCONSCRIPTION", "libelle": "13\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b013\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "13", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792808.json b/public/organe/PO792808.json new file mode 100644 index 0000000..f6c626d --- /dev/null +++ b/public/organe/PO792808.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792808", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792810.json b/public/organe/PO792810.json new file mode 100644 index 0000000..5646a28 --- /dev/null +++ b/public/organe/PO792810.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792810", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO792812.json b/public/organe/PO792812.json new file mode 100644 index 0000000..81f33e9 --- /dev/null +++ b/public/organe/PO792812.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792812", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792814.json b/public/organe/PO792814.json new file mode 100644 index 0000000..33f152f --- /dev/null +++ b/public/organe/PO792814.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792814", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription du Val-d'Oise", "libelleEdition": "de la circonscription", "libelleAbrege": "95 Val-d'Oise (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "95", "libelle": "Val-d'Oise"}}}} \ No newline at end of file diff --git a/public/organe/PO792816.json b/public/organe/PO792816.json new file mode 100644 index 0000000..c1c2b17 --- /dev/null +++ b/public/organe/PO792816.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792816", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792818.json b/public/organe/PO792818.json new file mode 100644 index 0000000..4bc4d55 --- /dev/null +++ b/public/organe/PO792818.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792818", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO792820.json b/public/organe/PO792820.json new file mode 100644 index 0000000..ebbb45d --- /dev/null +++ b/public/organe/PO792820.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792820", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792822.json b/public/organe/PO792822.json new file mode 100644 index 0000000..4a2b92b --- /dev/null +++ b/public/organe/PO792822.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792822", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente", "libelleEdition": "de la circonscription", "libelleAbrege": "16 Charente (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "16", "libelle": "Charente"}}}} \ No newline at end of file diff --git a/public/organe/PO792824.json b/public/organe/PO792824.json new file mode 100644 index 0000000..9851e5d --- /dev/null +++ b/public/organe/PO792824.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792824", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792826.json b/public/organe/PO792826.json new file mode 100644 index 0000000..25029fe --- /dev/null +++ b/public/organe/PO792826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792826", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de Vaucluse", "libelleEdition": "de la circonscription", "libelleAbrege": "84 Vaucluse (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "84", "libelle": "Vaucluse"}}}} \ No newline at end of file diff --git a/public/organe/PO792828.json b/public/organe/PO792828.json new file mode 100644 index 0000000..d237f1c --- /dev/null +++ b/public/organe/PO792828.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792828", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792830.json b/public/organe/PO792830.json new file mode 100644 index 0000000..8d6478d --- /dev/null +++ b/public/organe/PO792830.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792830", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de Seine-et-Marne", "libelleEdition": "de la circonscription", "libelleAbrege": "77 Seine-et-Marne (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Ile-de-France"}, "departement": {"codeNatureDep": "M", "code": "77", "libelle": "Seine-et-Marne"}}}} \ No newline at end of file diff --git a/public/organe/PO792832.json b/public/organe/PO792832.json new file mode 100644 index 0000000..1b06d54 --- /dev/null +++ b/public/organe/PO792832.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792832", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792834.json b/public/organe/PO792834.json new file mode 100644 index 0000000..79f3dda --- /dev/null +++ b/public/organe/PO792834.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792834", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la R\u00e9union", "libelleEdition": "de la circonscription", "libelleAbrege": "974 R\u00e9union (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "Dom", "libelle": "R\u00e9union"}, "departement": {"codeNatureDep": "O", "code": "974", "libelle": "R\u00e9union"}}}} \ No newline at end of file diff --git a/public/organe/PO792836.json b/public/organe/PO792836.json new file mode 100644 index 0000000..7c4bce1 --- /dev/null +++ b/public/organe/PO792836.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792836", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des Bouches-du-Rh\u00f4ne", "libelleEdition": "de la circonscription", "libelleAbrege": "13 Bouches-du-Rh\u00f4ne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "13", "libelle": "Bouches-du-Rh\u00f4ne"}}}} \ No newline at end of file diff --git a/public/organe/PO792838.json b/public/organe/PO792838.json new file mode 100644 index 0000000..6f5f62a --- /dev/null +++ b/public/organe/PO792838.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792838", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Var", "libelleEdition": "de la circonscription", "libelleAbrege": "83 Var (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Provence-Alpes-C\u00f4te d'Azur"}, "departement": {"codeNatureDep": "M", "code": "83", "libelle": "Var"}}}} \ No newline at end of file diff --git a/public/organe/PO792840.json b/public/organe/PO792840.json new file mode 100644 index 0000000..b64a257 --- /dev/null +++ b/public/organe/PO792840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792840", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO792842.json b/public/organe/PO792842.json new file mode 100644 index 0000000..46c63bb --- /dev/null +++ b/public/organe/PO792842.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792842", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO792844.json b/public/organe/PO792844.json new file mode 100644 index 0000000..17ad397 --- /dev/null +++ b/public/organe/PO792844.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792844", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO792846.json b/public/organe/PO792846.json new file mode 100644 index 0000000..aacc1ff --- /dev/null +++ b/public/organe/PO792846.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792846", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO792848.json b/public/organe/PO792848.json new file mode 100644 index 0000000..5ba4475 --- /dev/null +++ b/public/organe/PO792848.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792848", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792850.json b/public/organe/PO792850.json new file mode 100644 index 0000000..eed508e --- /dev/null +++ b/public/organe/PO792850.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792850", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792852.json b/public/organe/PO792852.json new file mode 100644 index 0000000..5fb9b0c --- /dev/null +++ b/public/organe/PO792852.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792852", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792854.json b/public/organe/PO792854.json new file mode 100644 index 0000000..9d1ff3e --- /dev/null +++ b/public/organe/PO792854.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792854", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792856.json b/public/organe/PO792856.json new file mode 100644 index 0000000..ac1d249 --- /dev/null +++ b/public/organe/PO792856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792856", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792858.json b/public/organe/PO792858.json new file mode 100644 index 0000000..24a6ce1 --- /dev/null +++ b/public/organe/PO792858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792858", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792860.json b/public/organe/PO792860.json new file mode 100644 index 0000000..72f30ea --- /dev/null +++ b/public/organe/PO792860.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792860", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription des Fran\u00e7ais \u00e9tablis hors de France", "libelleEdition": "de la circonscription", "libelleAbrege": "099 Fran\u00e7ais \u00e9tablis hors de France (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "Fran\u00e7ais \u00e9tablis hors de France", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}, "departement": {"codeNatureDep": "H", "code": "099", "libelle": "Fran\u00e7ais \u00e9tablis hors de France"}}}} \ No newline at end of file diff --git a/public/organe/PO792862.json b/public/organe/PO792862.json new file mode 100644 index 0000000..3061929 --- /dev/null +++ b/public/organe/PO792862.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792862", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792864.json b/public/organe/PO792864.json new file mode 100644 index 0000000..b57fb21 --- /dev/null +++ b/public/organe/PO792864.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792864", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO792866.json b/public/organe/PO792866.json new file mode 100644 index 0000000..d1119b7 --- /dev/null +++ b/public/organe/PO792866.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792866", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO792868.json b/public/organe/PO792868.json new file mode 100644 index 0000000..ff5e10d --- /dev/null +++ b/public/organe/PO792868.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792868", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Corse", "libelleEdition": "de la circonscription", "libelleAbrege": "2B Haute-Corse (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2B", "libelle": "Haute-Corse"}}}} \ No newline at end of file diff --git a/public/organe/PO792870.json b/public/organe/PO792870.json new file mode 100644 index 0000000..e76032c --- /dev/null +++ b/public/organe/PO792870.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792870", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO792872.json b/public/organe/PO792872.json new file mode 100644 index 0000000..a0f0784 --- /dev/null +++ b/public/organe/PO792872.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792872", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO792874.json b/public/organe/PO792874.json new file mode 100644 index 0000000..7c914ee --- /dev/null +++ b/public/organe/PO792874.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792874", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Calvados", "libelleEdition": "de la circonscription", "libelleAbrege": "14 Calvados (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "14", "libelle": "Calvados"}}}} \ No newline at end of file diff --git a/public/organe/PO792876.json b/public/organe/PO792876.json new file mode 100644 index 0000000..f186ca5 --- /dev/null +++ b/public/organe/PO792876.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792876", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO792878.json b/public/organe/PO792878.json new file mode 100644 index 0000000..57c3da2 --- /dev/null +++ b/public/organe/PO792878.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792878", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cantal", "libelleEdition": "de la circonscription", "libelleAbrege": "15 Cantal (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "15", "libelle": "Cantal"}}}} \ No newline at end of file diff --git a/public/organe/PO792880.json b/public/organe/PO792880.json new file mode 100644 index 0000000..2af7f35 --- /dev/null +++ b/public/organe/PO792880.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792880", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Charente-Maritime", "libelleEdition": "de la circonscription", "libelleAbrege": "17 Charente-Maritime (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "17", "libelle": "Charente-Maritime"}}}} \ No newline at end of file diff --git a/public/organe/PO792882.json b/public/organe/PO792882.json new file mode 100644 index 0000000..a974dd7 --- /dev/null +++ b/public/organe/PO792882.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792882", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO792884.json b/public/organe/PO792884.json new file mode 100644 index 0000000..5c7f568 --- /dev/null +++ b/public/organe/PO792884.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792884", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO792886.json b/public/organe/PO792886.json new file mode 100644 index 0000000..d4448fb --- /dev/null +++ b/public/organe/PO792886.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792886", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Cher", "libelleEdition": "de la circonscription", "libelleAbrege": "18 Cher (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "18", "libelle": "Cher"}}}} \ No newline at end of file diff --git a/public/organe/PO792888.json b/public/organe/PO792888.json new file mode 100644 index 0000000..0f89841 --- /dev/null +++ b/public/organe/PO792888.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792888", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO792890.json b/public/organe/PO792890.json new file mode 100644 index 0000000..ffd93b0 --- /dev/null +++ b/public/organe/PO792890.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792890", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO792892.json b/public/organe/PO792892.json new file mode 100644 index 0000000..4f5ec0f --- /dev/null +++ b/public/organe/PO792892.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792892", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO792894.json b/public/organe/PO792894.json new file mode 100644 index 0000000..710d8b5 --- /dev/null +++ b/public/organe/PO792894.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792894", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la C\u00f4te-d'Or", "libelleEdition": "de la circonscription", "libelleAbrege": "21 C\u00f4te-d'Or (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "21", "libelle": "C\u00f4te-d'Or"}}}} \ No newline at end of file diff --git a/public/organe/PO792896.json b/public/organe/PO792896.json new file mode 100644 index 0000000..6f7070c --- /dev/null +++ b/public/organe/PO792896.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792896", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO792898.json b/public/organe/PO792898.json new file mode 100644 index 0000000..c18a3d4 --- /dev/null +++ b/public/organe/PO792898.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792898", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO792900.json b/public/organe/PO792900.json new file mode 100644 index 0000000..0606944 --- /dev/null +++ b/public/organe/PO792900.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792900", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO792902.json b/public/organe/PO792902.json new file mode 100644 index 0000000..176c469 --- /dev/null +++ b/public/organe/PO792902.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792902", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO792904.json b/public/organe/PO792904.json new file mode 100644 index 0000000..2d37bd3 --- /dev/null +++ b/public/organe/PO792904.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792904", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO792906.json b/public/organe/PO792906.json new file mode 100644 index 0000000..e175de9 --- /dev/null +++ b/public/organe/PO792906.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792906", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Corr\u00e8ze", "libelleEdition": "de la circonscription", "libelleAbrege": "19 Corr\u00e8ze (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "19", "libelle": "Corr\u00e8ze"}}}} \ No newline at end of file diff --git a/public/organe/PO792908.json b/public/organe/PO792908.json new file mode 100644 index 0000000..39ed474 --- /dev/null +++ b/public/organe/PO792908.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792908", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO792910.json b/public/organe/PO792910.json new file mode 100644 index 0000000..ecb4c12 --- /dev/null +++ b/public/organe/PO792910.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792910", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Corse-du-Sud", "libelleEdition": "de la circonscription", "libelleAbrege": "2A Corse-du-Sud (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Corse"}, "departement": {"codeNatureDep": "M", "code": "2A", "libelle": "Corse-du-Sud"}}}} \ No newline at end of file diff --git a/public/organe/PO792912.json b/public/organe/PO792912.json new file mode 100644 index 0000000..118264c --- /dev/null +++ b/public/organe/PO792912.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792912", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO792914.json b/public/organe/PO792914.json new file mode 100644 index 0000000..c209bcc --- /dev/null +++ b/public/organe/PO792914.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792914", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO792916.json b/public/organe/PO792916.json new file mode 100644 index 0000000..932c1cb --- /dev/null +++ b/public/organe/PO792916.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792916", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Creuse", "libelleEdition": "de la circonscription", "libelleAbrege": "23 Creuse (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "23", "libelle": "Creuse"}}}} \ No newline at end of file diff --git a/public/organe/PO792918.json b/public/organe/PO792918.json new file mode 100644 index 0000000..1538886 --- /dev/null +++ b/public/organe/PO792918.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792918", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO792920.json b/public/organe/PO792920.json new file mode 100644 index 0000000..1407ba1 --- /dev/null +++ b/public/organe/PO792920.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792920", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO792922.json b/public/organe/PO792922.json new file mode 100644 index 0000000..9f99000 --- /dev/null +++ b/public/organe/PO792922.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792922", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO792924.json b/public/organe/PO792924.json new file mode 100644 index 0000000..1efb3b4 --- /dev/null +++ b/public/organe/PO792924.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792924", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO792926.json b/public/organe/PO792926.json new file mode 100644 index 0000000..a51685a --- /dev/null +++ b/public/organe/PO792926.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792926", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Doubs", "libelleEdition": "de la circonscription", "libelleAbrege": "25 Doubs (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "25", "libelle": "Doubs"}}}} \ No newline at end of file diff --git a/public/organe/PO792928.json b/public/organe/PO792928.json new file mode 100644 index 0000000..fab574f --- /dev/null +++ b/public/organe/PO792928.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792928", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO792930.json b/public/organe/PO792930.json new file mode 100644 index 0000000..cabd251 --- /dev/null +++ b/public/organe/PO792930.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792930", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO792932.json b/public/organe/PO792932.json new file mode 100644 index 0000000..db21c0c --- /dev/null +++ b/public/organe/PO792932.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792932", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO792934.json b/public/organe/PO792934.json new file mode 100644 index 0000000..953bcec --- /dev/null +++ b/public/organe/PO792934.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792934", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792936.json b/public/organe/PO792936.json new file mode 100644 index 0000000..89217d7 --- /dev/null +++ b/public/organe/PO792936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792936", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dordogne", "libelleEdition": "de la circonscription", "libelleAbrege": "24 Dordogne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "24", "libelle": "Dordogne"}}}} \ No newline at end of file diff --git a/public/organe/PO792938.json b/public/organe/PO792938.json new file mode 100644 index 0000000..e5d26cf --- /dev/null +++ b/public/organe/PO792938.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792938", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription des C\u00f4tes-d'Armor", "libelleEdition": "de la circonscription", "libelleAbrege": "22 C\u00f4tes-d'Armor (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "22", "libelle": "C\u00f4tes-d'Armor"}}}} \ No newline at end of file diff --git a/public/organe/PO792940.json b/public/organe/PO792940.json new file mode 100644 index 0000000..6705c8a --- /dev/null +++ b/public/organe/PO792940.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792940", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO792942.json b/public/organe/PO792942.json new file mode 100644 index 0000000..d46f693 --- /dev/null +++ b/public/organe/PO792942.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792942", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure-et-Loir", "libelleEdition": "de la circonscription", "libelleAbrege": "28 Eure-et-Loir (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "28", "libelle": "Eure-et-Loir"}}}} \ No newline at end of file diff --git a/public/organe/PO792944.json b/public/organe/PO792944.json new file mode 100644 index 0000000..9773fc7 --- /dev/null +++ b/public/organe/PO792944.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792944", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO792946.json b/public/organe/PO792946.json new file mode 100644 index 0000000..d56beab --- /dev/null +++ b/public/organe/PO792946.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792946", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO792948.json b/public/organe/PO792948.json new file mode 100644 index 0000000..aa98647 --- /dev/null +++ b/public/organe/PO792948.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792948", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO792950.json b/public/organe/PO792950.json new file mode 100644 index 0000000..665725f --- /dev/null +++ b/public/organe/PO792950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792950", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO792952.json b/public/organe/PO792952.json new file mode 100644 index 0000000..19447dd --- /dev/null +++ b/public/organe/PO792952.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792952", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792954.json b/public/organe/PO792954.json new file mode 100644 index 0000000..4847f68 --- /dev/null +++ b/public/organe/PO792954.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792954", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792956.json b/public/organe/PO792956.json new file mode 100644 index 0000000..05b2cde --- /dev/null +++ b/public/organe/PO792956.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792956", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO792958.json b/public/organe/PO792958.json new file mode 100644 index 0000000..76e45fa --- /dev/null +++ b/public/organe/PO792958.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792958", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Dr\u00f4me", "libelleEdition": "de la circonscription", "libelleAbrege": "26 Dr\u00f4me (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "26", "libelle": "Dr\u00f4me"}}}} \ No newline at end of file diff --git a/public/organe/PO792960.json b/public/organe/PO792960.json new file mode 100644 index 0000000..809d84a --- /dev/null +++ b/public/organe/PO792960.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792960", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792962.json b/public/organe/PO792962.json new file mode 100644 index 0000000..7c8df76 --- /dev/null +++ b/public/organe/PO792962.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792962", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792964.json b/public/organe/PO792964.json new file mode 100644 index 0000000..55b5b76 --- /dev/null +++ b/public/organe/PO792964.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792964", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792966.json b/public/organe/PO792966.json new file mode 100644 index 0000000..c3889e5 --- /dev/null +++ b/public/organe/PO792966.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792966", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792968.json b/public/organe/PO792968.json new file mode 100644 index 0000000..0f1a4fd --- /dev/null +++ b/public/organe/PO792968.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792968", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO792970.json b/public/organe/PO792970.json new file mode 100644 index 0000000..0c4c438 --- /dev/null +++ b/public/organe/PO792970.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792970", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Eure", "libelleEdition": "de la circonscription", "libelleAbrege": "27 Eure (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Normandie"}, "departement": {"codeNatureDep": "M", "code": "27", "libelle": "Eure"}}}} \ No newline at end of file diff --git a/public/organe/PO792972.json b/public/organe/PO792972.json new file mode 100644 index 0000000..2b69cc7 --- /dev/null +++ b/public/organe/PO792972.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792972", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO792974.json b/public/organe/PO792974.json new file mode 100644 index 0000000..efd565f --- /dev/null +++ b/public/organe/PO792974.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792974", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO792976.json b/public/organe/PO792976.json new file mode 100644 index 0000000..1d8bd2d --- /dev/null +++ b/public/organe/PO792976.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792976", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792978.json b/public/organe/PO792978.json new file mode 100644 index 0000000..3770d96 --- /dev/null +++ b/public/organe/PO792978.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792978", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792980.json b/public/organe/PO792980.json new file mode 100644 index 0000000..b2325f5 --- /dev/null +++ b/public/organe/PO792980.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792980", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792982.json b/public/organe/PO792982.json new file mode 100644 index 0000000..e01aed7 --- /dev/null +++ b/public/organe/PO792982.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792982", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO792984.json b/public/organe/PO792984.json new file mode 100644 index 0000000..2c93167 --- /dev/null +++ b/public/organe/PO792984.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792984", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792986.json b/public/organe/PO792986.json new file mode 100644 index 0000000..9cf7120 --- /dev/null +++ b/public/organe/PO792986.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792986", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO792988.json b/public/organe/PO792988.json new file mode 100644 index 0000000..e226152 --- /dev/null +++ b/public/organe/PO792988.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792988", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792990.json b/public/organe/PO792990.json new file mode 100644 index 0000000..8386389 --- /dev/null +++ b/public/organe/PO792990.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792990", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription du Finist\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "29 Finist\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "29", "libelle": "Finist\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO792992.json b/public/organe/PO792992.json new file mode 100644 index 0000000..b9af900 --- /dev/null +++ b/public/organe/PO792992.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792992", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO792994.json b/public/organe/PO792994.json new file mode 100644 index 0000000..fc17079 --- /dev/null +++ b/public/organe/PO792994.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792994", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO792996.json b/public/organe/PO792996.json new file mode 100644 index 0000000..7daf755 --- /dev/null +++ b/public/organe/PO792996.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792996", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO792998.json b/public/organe/PO792998.json new file mode 100644 index 0000000..48ea8da --- /dev/null +++ b/public/organe/PO792998.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO792998", "codeType": "CIRCONSCRIPTION", "libelle": "10\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b010\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "10", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO793000.json b/public/organe/PO793000.json new file mode 100644 index 0000000..4618e42 --- /dev/null +++ b/public/organe/PO793000.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793000", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO793002.json b/public/organe/PO793002.json new file mode 100644 index 0000000..39aeaa6 --- /dev/null +++ b/public/organe/PO793002.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793002", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription du Gard", "libelleEdition": "de la circonscription", "libelleAbrege": "30 Gard (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "30", "libelle": "Gard"}}}} \ No newline at end of file diff --git a/public/organe/PO793004.json b/public/organe/PO793004.json new file mode 100644 index 0000000..d7b2115 --- /dev/null +++ b/public/organe/PO793004.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793004", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO793006.json b/public/organe/PO793006.json new file mode 100644 index 0000000..680d813 --- /dev/null +++ b/public/organe/PO793006.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793006", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO793008.json b/public/organe/PO793008.json new file mode 100644 index 0000000..3298edd --- /dev/null +++ b/public/organe/PO793008.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793008", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO793010.json b/public/organe/PO793010.json new file mode 100644 index 0000000..06da6ec --- /dev/null +++ b/public/organe/PO793010.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793010", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Gers", "libelleEdition": "de la circonscription", "libelleAbrege": "32 Gers (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "32", "libelle": "Gers"}}}} \ No newline at end of file diff --git a/public/organe/PO793012.json b/public/organe/PO793012.json new file mode 100644 index 0000000..f78f84b --- /dev/null +++ b/public/organe/PO793012.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793012", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO793014.json b/public/organe/PO793014.json new file mode 100644 index 0000000..6f327d3 --- /dev/null +++ b/public/organe/PO793014.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793014", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO793016.json b/public/organe/PO793016.json new file mode 100644 index 0000000..dee91c1 --- /dev/null +++ b/public/organe/PO793016.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793016", "codeType": "CIRCONSCRIPTION", "libelle": "11\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b011\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "11", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO793018.json b/public/organe/PO793018.json new file mode 100644 index 0000000..b48a56d --- /dev/null +++ b/public/organe/PO793018.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793018", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO793020.json b/public/organe/PO793020.json new file mode 100644 index 0000000..2fec1f5 --- /dev/null +++ b/public/organe/PO793020.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793020", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO793022.json b/public/organe/PO793022.json new file mode 100644 index 0000000..f842083 --- /dev/null +++ b/public/organe/PO793022.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793022", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de la Haute-Garonne", "libelleEdition": "de la circonscription", "libelleAbrege": "31 Haute-Garonne (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "31", "libelle": "Haute-Garonne"}}}} \ No newline at end of file diff --git a/public/organe/PO793024.json b/public/organe/PO793024.json new file mode 100644 index 0000000..98a7f6c --- /dev/null +++ b/public/organe/PO793024.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793024", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO793026.json b/public/organe/PO793026.json new file mode 100644 index 0000000..6a66b75 --- /dev/null +++ b/public/organe/PO793026.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793026", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO793028.json b/public/organe/PO793028.json new file mode 100644 index 0000000..36b6a03 --- /dev/null +++ b/public/organe/PO793028.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793028", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO793030.json b/public/organe/PO793030.json new file mode 100644 index 0000000..db5acea --- /dev/null +++ b/public/organe/PO793030.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793030", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO793032.json b/public/organe/PO793032.json new file mode 100644 index 0000000..dde4f65 --- /dev/null +++ b/public/organe/PO793032.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793032", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO793034.json b/public/organe/PO793034.json new file mode 100644 index 0000000..4b0eb79 --- /dev/null +++ b/public/organe/PO793034.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793034", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de la Gironde", "libelleEdition": "de la circonscription", "libelleAbrege": "33 Gironde (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Nouvelle-Aquitaine"}, "departement": {"codeNatureDep": "M", "code": "33", "libelle": "Gironde"}}}} \ No newline at end of file diff --git a/public/organe/PO793036.json b/public/organe/PO793036.json new file mode 100644 index 0000000..4b15c49 --- /dev/null +++ b/public/organe/PO793036.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793036", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO793038.json b/public/organe/PO793038.json new file mode 100644 index 0000000..b7840ff --- /dev/null +++ b/public/organe/PO793038.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793038", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO793040.json b/public/organe/PO793040.json new file mode 100644 index 0000000..018b045 --- /dev/null +++ b/public/organe/PO793040.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793040", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO793042.json b/public/organe/PO793042.json new file mode 100644 index 0000000..9fdd9dd --- /dev/null +++ b/public/organe/PO793042.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793042", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO793044.json b/public/organe/PO793044.json new file mode 100644 index 0000000..4ff29ae --- /dev/null +++ b/public/organe/PO793044.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793044", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO793046.json b/public/organe/PO793046.json new file mode 100644 index 0000000..3465a4f --- /dev/null +++ b/public/organe/PO793046.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793046", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO793048.json b/public/organe/PO793048.json new file mode 100644 index 0000000..45a9153 --- /dev/null +++ b/public/organe/PO793048.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793048", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO793050.json b/public/organe/PO793050.json new file mode 100644 index 0000000..9344fd8 --- /dev/null +++ b/public/organe/PO793050.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793050", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre", "libelleEdition": "de la circonscription", "libelleAbrege": "36 Indre (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "36", "libelle": "Indre"}}}} \ No newline at end of file diff --git a/public/organe/PO793052.json b/public/organe/PO793052.json new file mode 100644 index 0000000..d5b1af7 --- /dev/null +++ b/public/organe/PO793052.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793052", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO793054.json b/public/organe/PO793054.json new file mode 100644 index 0000000..c7cc7d7 --- /dev/null +++ b/public/organe/PO793054.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793054", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'H\u00e9rault", "libelleEdition": "de la circonscription", "libelleAbrege": "34 H\u00e9rault (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Occitanie"}, "departement": {"codeNatureDep": "M", "code": "34", "libelle": "H\u00e9rault"}}}} \ No newline at end of file diff --git a/public/organe/PO793056.json b/public/organe/PO793056.json new file mode 100644 index 0000000..3c5147c --- /dev/null +++ b/public/organe/PO793056.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793056", "codeType": "CIRCONSCRIPTION", "libelle": "9\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 9\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "9", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO793058.json b/public/organe/PO793058.json new file mode 100644 index 0000000..71f78e7 --- /dev/null +++ b/public/organe/PO793058.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793058", "codeType": "CIRCONSCRIPTION", "libelle": "6\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 6\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "6", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO793060.json b/public/organe/PO793060.json new file mode 100644 index 0000000..3fc32f3 --- /dev/null +++ b/public/organe/PO793060.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793060", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO793062.json b/public/organe/PO793062.json new file mode 100644 index 0000000..3f99732 --- /dev/null +++ b/public/organe/PO793062.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793062", "codeType": "CIRCONSCRIPTION", "libelle": "8\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 8\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "8", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO793064.json b/public/organe/PO793064.json new file mode 100644 index 0000000..26b83a9 --- /dev/null +++ b/public/organe/PO793064.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793064", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO793066.json b/public/organe/PO793066.json new file mode 100644 index 0000000..67cdfee --- /dev/null +++ b/public/organe/PO793066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793066", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Ille-et-Vilaine", "libelleEdition": "de la circonscription", "libelleAbrege": "35 Ille-et-Vilaine (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bretagne"}, "departement": {"codeNatureDep": "M", "code": "35", "libelle": "Ille-et-Vilaine"}}}} \ No newline at end of file diff --git a/public/organe/PO793068.json b/public/organe/PO793068.json new file mode 100644 index 0000000..e249e4a --- /dev/null +++ b/public/organe/PO793068.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793068", "codeType": "CIRCONSCRIPTION", "libelle": "7\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 7\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "7", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO793070.json b/public/organe/PO793070.json new file mode 100644 index 0000000..488ddec --- /dev/null +++ b/public/organe/PO793070.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793070", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO793072.json b/public/organe/PO793072.json new file mode 100644 index 0000000..f64a4bd --- /dev/null +++ b/public/organe/PO793072.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793072", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO793074.json b/public/organe/PO793074.json new file mode 100644 index 0000000..dcf5d49 --- /dev/null +++ b/public/organe/PO793074.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793074", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO793076.json b/public/organe/PO793076.json new file mode 100644 index 0000000..870fa13 --- /dev/null +++ b/public/organe/PO793076.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793076", "codeType": "CIRCONSCRIPTION", "libelle": "3\u00e8me circonscription de l'Is\u00e8re", "libelleEdition": "de la circonscription", "libelleAbrege": "38 Is\u00e8re (\u00b0 3\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "3", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Auvergne-Rh\u00f4ne-Alpes"}, "departement": {"codeNatureDep": "M", "code": "38", "libelle": "Is\u00e8re"}}}} \ No newline at end of file diff --git a/public/organe/PO793078.json b/public/organe/PO793078.json new file mode 100644 index 0000000..0954e82 --- /dev/null +++ b/public/organe/PO793078.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793078", "codeType": "CIRCONSCRIPTION", "libelle": "5\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 5\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "5", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO793080.json b/public/organe/PO793080.json new file mode 100644 index 0000000..55bd492 --- /dev/null +++ b/public/organe/PO793080.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793080", "codeType": "CIRCONSCRIPTION", "libelle": "2\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 2\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "2", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO793082.json b/public/organe/PO793082.json new file mode 100644 index 0000000..6fb0edf --- /dev/null +++ b/public/organe/PO793082.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793082", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription du Jura", "libelleEdition": "de la circonscription", "libelleAbrege": "39 Jura (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Bourgogne-Franche-Comt\u00e9"}, "departement": {"codeNatureDep": "M", "code": "39", "libelle": "Jura"}}}} \ No newline at end of file diff --git a/public/organe/PO793084.json b/public/organe/PO793084.json new file mode 100644 index 0000000..deefe68 --- /dev/null +++ b/public/organe/PO793084.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793084", "codeType": "CIRCONSCRIPTION", "libelle": "4\u00e8me circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 4\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "4", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO793086.json b/public/organe/PO793086.json new file mode 100644 index 0000000..b999d03 --- /dev/null +++ b/public/organe/PO793086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeCirconscription_type", "uid": "PO793086", "codeType": "CIRCONSCRIPTION", "libelle": "1\u00e8re circonscription de l'Indre-et-Loire", "libelleEdition": "de la circonscription", "libelleAbrege": "37 Indre-et-Loire (\u00b0 1\u00b0)", "libelleAbrev": "CIRCO", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "numero": "1", "lieu": {"region": {"type": "M\u00e9tropolitain", "libelle": "Centre-Val de Loire"}, "departement": {"codeNatureDep": "M", "code": "37", "libelle": "Indre-et-Loire"}}}} \ No newline at end of file diff --git a/public/organe/PO793087.json b/public/organe/PO793087.json new file mode 100644 index 0000000..acea05a --- /dev/null +++ b/public/organe/PO793087.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO793087", "codeType": "GP", "libelle": "Non inscrit", "libelleEdition": "des d\u00e9put\u00e9s non inscrits", "libelleAbrege": "NI", "libelleAbrev": "NI", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": null, "preseance": "99", "couleurAssociee": "#8D949A"}} \ No newline at end of file diff --git a/public/organe/PO800442.json b/public/organe/PO800442.json new file mode 100644 index 0000000..9399fbf --- /dev/null +++ b/public/organe/PO800442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO800442", "codeType": "BUREAU", "libelle": "Bureau de l'Assembl\u00e9e nationale", "libelleEdition": "de l'Assembl\u00e9e nationale", "libelleAbrege": "Bureau de l'Assembl\u00e9e", "libelleAbrev": "BURAN", "viMoDe": {"dateDebut": "2022-06-22", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO800480.json b/public/organe/PO800480.json new file mode 100644 index 0000000..15efe10 --- /dev/null +++ b/public/organe/PO800480.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO800480", "codeType": "CONFPT", "libelle": "Conf\u00e9rence des pr\u00e9sidents", "libelleEdition": "de la Conf\u00e9rence des pr\u00e9sidents", "libelleAbrege": "Conf\u00e9rence des pr\u00e9sidents", "libelleAbrev": "CNFPDT", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO800484.json b/public/organe/PO800484.json new file mode 100644 index 0000000..1412782 --- /dev/null +++ b/public/organe/PO800484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800484", "codeType": "GP", "libelle": "D\u00e9mocrate (MoDem et Ind\u00e9pendants)", "libelleEdition": "du groupe D\u00e9mocrate (MoDem et Ind\u00e9pendants)", "libelleAbrege": "Dem", "libelleAbrev": "DEM", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Minoritaire", "preseance": "5", "couleurAssociee": "#CE5215"}} \ No newline at end of file diff --git a/public/organe/PO800490.json b/public/organe/PO800490.json new file mode 100644 index 0000000..e66814c --- /dev/null +++ b/public/organe/PO800490.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800490", "codeType": "GP", "libelle": "La France insoumise - Nouvelle Union Populaire \u00e9cologique et sociale", "libelleEdition": "du groupe La France insoumise - Nouvelle Union Populaire \u00e9cologique et sociale", "libelleAbrege": "LFI - NUPES", "libelleAbrev": "LFI-NUPES", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Opposition", "preseance": "3", "couleurAssociee": "#E42313"}} \ No newline at end of file diff --git a/public/organe/PO800496.json b/public/organe/PO800496.json new file mode 100644 index 0000000..9555cbf --- /dev/null +++ b/public/organe/PO800496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800496", "codeType": "GP", "libelle": "Socialistes et apparent\u00e9s (membre de l\u2019intergroupe NUPES)", "libelleEdition": "du groupe Socialistes et apparent\u00e9s (membre de l\u2019intergroupe NUPES)", "libelleAbrege": "SOC", "libelleAbrev": "SOC", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Opposition", "preseance": "6", "couleurAssociee": "#DF84B5"}} \ No newline at end of file diff --git a/public/organe/PO800502.json b/public/organe/PO800502.json new file mode 100644 index 0000000..6532b12 --- /dev/null +++ b/public/organe/PO800502.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800502", "codeType": "GP", "libelle": "Gauche d\u00e9mocrate et r\u00e9publicaine - NUPES", "libelleEdition": "du groupe de la Gauche d\u00e9mocrate et r\u00e9publicaine - NUPES", "libelleAbrege": "GDR - NUPES", "libelleAbrev": "GDR-NUPES", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Opposition", "preseance": "9", "couleurAssociee": "#991414"}} \ No newline at end of file diff --git a/public/organe/PO800508.json b/public/organe/PO800508.json new file mode 100644 index 0000000..de7acf2 --- /dev/null +++ b/public/organe/PO800508.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800508", "codeType": "GP", "libelle": "Les R\u00e9publicains", "libelleEdition": "du groupe Les R\u00e9publicains", "libelleAbrege": "LR", "libelleAbrev": "LR", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Opposition", "preseance": "4", "couleurAssociee": "#4565AD"}} \ No newline at end of file diff --git a/public/organe/PO800514.json b/public/organe/PO800514.json new file mode 100644 index 0000000..41e1160 --- /dev/null +++ b/public/organe/PO800514.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800514", "codeType": "GP", "libelle": "Horizons et apparent\u00e9s", "libelleEdition": "du groupe Horizons et apparent\u00e9s", "libelleAbrege": "HOR", "libelleAbrev": "HOR", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Minoritaire", "preseance": "7", "couleurAssociee": "#32B3CA"}} \ No newline at end of file diff --git a/public/organe/PO800520.json b/public/organe/PO800520.json new file mode 100644 index 0000000..d56842e --- /dev/null +++ b/public/organe/PO800520.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800520", "codeType": "GP", "libelle": "Rassemblement National", "libelleEdition": "du groupe Rassemblement National", "libelleAbrege": "RN", "libelleAbrev": "RN", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Opposition", "preseance": "2", "couleurAssociee": "#35495E"}} \ No newline at end of file diff --git a/public/organe/PO800526.json b/public/organe/PO800526.json new file mode 100644 index 0000000..9bebaa1 --- /dev/null +++ b/public/organe/PO800526.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800526", "codeType": "GP", "libelle": "\u00c9cologiste - NUPES", "libelleEdition": "du groupe \u00c9cologiste - NUPES", "libelleAbrege": "Ecolo - NUPES", "libelleAbrev": "ECOLO", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Opposition", "preseance": "8", "couleurAssociee": "#77AA79"}} \ No newline at end of file diff --git a/public/organe/PO800532.json b/public/organe/PO800532.json new file mode 100644 index 0000000..006ce86 --- /dev/null +++ b/public/organe/PO800532.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800532", "codeType": "GP", "libelle": "Libert\u00e9s, Ind\u00e9pendants, Outre-mer et Territoires", "libelleEdition": "du groupe Libert\u00e9s, Ind\u00e9pendants, Outre-mer et Territoires", "libelleAbrege": "LIOT", "libelleAbrev": "LIOT", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Opposition", "preseance": "10", "couleurAssociee": "#F8D434"}} \ No newline at end of file diff --git a/public/organe/PO800538.json b/public/organe/PO800538.json new file mode 100644 index 0000000..984bd65 --- /dev/null +++ b/public/organe/PO800538.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "GroupePolitique_type", "uid": "PO800538", "codeType": "GP", "libelle": "Renaissance", "libelleEdition": "du groupe Renaissance", "libelleAbrege": "RE", "libelleAbrev": "RE", "viMoDe": {"dateDebut": "2022-06-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "positionPolitique": "Majoritaire", "preseance": "1", "couleurAssociee": "#61468F"}} \ No newline at end of file diff --git a/public/organe/PO801854.json b/public/organe/PO801854.json new file mode 100644 index 0000000..6eb7555 --- /dev/null +++ b/public/organe/PO801854.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801854", "codeType": "MINISTERE", "libelle": "Minist\u00e8re de l\u2019int\u00e9rieur et des outre-mer", "libelleEdition": "de l\u2019int\u00e9rieur et des outre-mer", "libelleAbrege": "Int\u00e9rieur et outre-mer", "libelleAbrev": "IOM", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801856.json b/public/organe/PO801856.json new file mode 100644 index 0000000..f50e34c --- /dev/null +++ b/public/organe/PO801856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801856", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 du renouveau d\u00e9mocratique, porte-parole du Gouvernement", "libelleEdition": "aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 du renouveau d\u00e9mocratique, porte-parole du Gouvernement", "libelleAbrege": "Renouveau d\u00e9mocratique, porte-parole du Gouvernement", "libelleAbrev": "PRMRE", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801858.json b/public/organe/PO801858.json new file mode 100644 index 0000000..3a88eb32 --- /dev/null +++ b/public/organe/PO801858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801858", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 des relations avec le Parlement", "libelleEdition": "aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 des relations avec le Parlement", "libelleAbrege": "Relations avec le Parlement", "libelleAbrev": "PRMRP", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801867.json b/public/organe/PO801867.json new file mode 100644 index 0000000..dbd7695 --- /dev/null +++ b/public/organe/PO801867.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801867", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique, charg\u00e9 de l\u2019industrie", "libelleEdition": "aupr\u00e8s du ministre de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique, charg\u00e9 de l\u2019industrie", "libelleAbrege": "Industrie", "libelleAbrev": "IND", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801875.json b/public/organe/PO801875.json new file mode 100644 index 0000000..c7627f9 --- /dev/null +++ b/public/organe/PO801875.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801875", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique, charg\u00e9 de la transition num\u00e9rique et des t\u00e9l\u00e9communications", "libelleEdition": "aupr\u00e8s du ministre de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique, charg\u00e9 de la transition num\u00e9rique et des t\u00e9l\u00e9communications", "libelleAbrege": "Transition num\u00e9rique et t\u00e9l\u00e9communications", "libelleAbrev": "TRNUM", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801877.json b/public/organe/PO801877.json new file mode 100644 index 0000000..624b945 --- /dev/null +++ b/public/organe/PO801877.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801877", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique, charg\u00e9 des petites et moyennes entreprises, du commerce, de l\u2019artisanat et du tourisme", "libelleEdition": "aupr\u00e8s du ministre de l\u2019\u00e9conomie, des finances et de la souverainet\u00e9 industrielle et num\u00e9rique, charg\u00e9 des petites et moyennes entreprises, du commerce, de l\u2019artisanat et du tourisme", "libelleAbrege": "Petites et moyennes entreprises, commerce, artisanat et tourisme", "libelleAbrev": "PME", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801881.json b/public/organe/PO801881.json new file mode 100644 index 0000000..4aced1a --- /dev/null +++ b/public/organe/PO801881.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801881", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre de l\u2019int\u00e9rieur et des outre-mer, charg\u00e9 des outre-mer", "libelleEdition": "aupr\u00e8s du ministre de l\u2019int\u00e9rieur et des outre-mer, charg\u00e9 des outre-mer", "libelleAbrege": "Outre-mer", "libelleAbrev": "OM", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801883.json b/public/organe/PO801883.json new file mode 100644 index 0000000..acf6996 --- /dev/null +++ b/public/organe/PO801883.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801883", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s de la ministre de l\u2019Europe et des affaires \u00e9trang\u00e8res, charg\u00e9 du commerce ext\u00e9rieur, de l'attractivit\u00e9 et des Fran\u00e7ais de l'\u00e9tranger", "libelleEdition": "aupr\u00e8s de la ministre de l\u2019Europe et des affaires \u00e9trang\u00e8res, charg\u00e9 du commerce ext\u00e9rieur, de l'attractivit\u00e9 et des Fran\u00e7ais de l'\u00e9tranger", "libelleAbrege": "Commerce ext\u00e9rieur, attractivit\u00e9 et Fran\u00e7ais de l'\u00e9tranger", "libelleAbrev": "COMEX", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801885.json b/public/organe/PO801885.json new file mode 100644 index 0000000..6cc24bf --- /dev/null +++ b/public/organe/PO801885.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801885", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre du travail, du plein emploi et de l\u2019insertion et du ministre de l\u2019\u00e9ducation nationale et de la jeunesse, charg\u00e9 de l\u2019enseignement et de la formation professionnels", "libelleEdition": "aupr\u00e8s du ministre du travail, du plein emploi et de l\u2019insertion et du ministre de l\u2019\u00e9ducation nationale et de la jeunesse, charg\u00e9 de l\u2019enseignement et de la formation professionnels", "libelleAbrege": "Enseignement et formation professionnels", "libelleAbrev": "ENPRO", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801887.json b/public/organe/PO801887.json new file mode 100644 index 0000000..f18966e --- /dev/null +++ b/public/organe/PO801887.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801887", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre de la transition \u00e9cologique et de la coh\u00e9sion des territoires, charg\u00e9 des transports", "libelleEdition": "aupr\u00e8s du ministre de la transition \u00e9cologique et de la coh\u00e9sion des territoires, charg\u00e9 des transports", "libelleAbrege": "Transports", "libelleAbrev": "TRANS", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801889.json b/public/organe/PO801889.json new file mode 100644 index 0000000..d388762 --- /dev/null +++ b/public/organe/PO801889.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801889", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre de la transition \u00e9cologique et de la coh\u00e9sion des territoires, charg\u00e9 de la ville et du logement", "libelleEdition": "aupr\u00e8s du ministre de la transition \u00e9cologique et de la coh\u00e9sion des territoires, charg\u00e9 de la ville et du logement", "libelleAbrege": "Ville et logement", "libelleAbrev": "VILOG", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801891.json b/public/organe/PO801891.json new file mode 100644 index 0000000..2fff1ec --- /dev/null +++ b/public/organe/PO801891.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801891", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre de la sant\u00e9 et de la pr\u00e9vention, charg\u00e9 de l\u2019organisation territoriale et des professions de sant\u00e9", "libelleEdition": "aupr\u00e8s du ministre de la sant\u00e9 et de la pr\u00e9vention, charg\u00e9 de l\u2019organisation territoriale et des professions de sant\u00e9", "libelleAbrege": "Organisation territoriale et professions de sant\u00e9", "libelleAbrev": "OTSAN", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801893.json b/public/organe/PO801893.json new file mode 100644 index 0000000..211cb02 --- /dev/null +++ b/public/organe/PO801893.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801893", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre des solidarit\u00e9s, de l'autonomie et des personnes handicap\u00e9es, charg\u00e9 des personnes handicap\u00e9es", "libelleEdition": "aupr\u00e8s du ministre des solidarit\u00e9s, de l'autonomie et des personnes handicap\u00e9es, charg\u00e9 des personnes handicap\u00e9es", "libelleAbrege": "Personnes handicap\u00e9es", "libelleAbrev": "HANDI", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801895.json b/public/organe/PO801895.json new file mode 100644 index 0000000..9589016 --- /dev/null +++ b/public/organe/PO801895.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801895", "codeType": "MINISTERE", "libelle": "Secr\u00e9tariat d\u2019\u00c9tat aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 de l\u2019\u00e9conomie sociale et solidaire et de la vie associative", "libelleEdition": "aupr\u00e8s de la Premi\u00e8re ministre, charg\u00e9 de l\u2019\u00e9conomie sociale et solidaire et de la vie associative", "libelleAbrege": "\u00c9conomie sociale et solidaire et vie associative", "libelleAbrev": "ECSOC", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801897.json b/public/organe/PO801897.json new file mode 100644 index 0000000..ae58646 --- /dev/null +++ b/public/organe/PO801897.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801897", "codeType": "MINISTERE", "libelle": "Secr\u00e9tariat d\u2019\u00c9tat aupr\u00e8s du ministre de l\u2019int\u00e9rieur et des outre-mer, charg\u00e9 de la citoyennet\u00e9", "libelleEdition": "aupr\u00e8s du ministre de l\u2019int\u00e9rieur et des outre-mer, charg\u00e9 de la citoyennet\u00e9", "libelleAbrege": "Citoyennet\u00e9", "libelleAbrev": "CITOY", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801899.json b/public/organe/PO801899.json new file mode 100644 index 0000000..57679a8 --- /dev/null +++ b/public/organe/PO801899.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801899", "codeType": "MINISTERE", "libelle": "Secr\u00e9tariat d\u2019\u00c9tat aupr\u00e8s de la ministre de l\u2019Europe et des affaires \u00e9trang\u00e8res, charg\u00e9 de l\u2019Europe", "libelleEdition": "aupr\u00e8s de la ministre de l\u2019Europe et des affaires \u00e9trang\u00e8res, charg\u00e9 de l\u2019Europe", "libelleAbrege": "Europe", "libelleAbrev": "EUROP", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801901.json b/public/organe/PO801901.json new file mode 100644 index 0000000..e6c33cc --- /dev/null +++ b/public/organe/PO801901.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801901", "codeType": "MINISTERE", "libelle": "Secr\u00e9tariat d\u2019\u00c9tat aupr\u00e8s du ministre des arm\u00e9es et du ministre de l\u2019\u00e9ducation nationale et de la jeunesse, charg\u00e9 de la jeunesse et du service national universel", "libelleEdition": "aupr\u00e8s du ministre des arm\u00e9es et du ministre de l\u2019\u00e9ducation nationale et de la jeunesse, charg\u00e9 de la jeunesse et du service national universel", "libelleAbrege": "Jeunesse et service national universel", "libelleAbrev": "JEUNE", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801903.json b/public/organe/PO801903.json new file mode 100644 index 0000000..9b20a28 --- /dev/null +++ b/public/organe/PO801903.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801903", "codeType": "MINISTERE", "libelle": "Secr\u00e9tariat d\u2019\u00c9tat aupr\u00e8s du ministre des arm\u00e9es, charg\u00e9 des anciens combattants et de la m\u00e9moire", "libelleEdition": "aupr\u00e8s du ministre des arm\u00e9es, charg\u00e9 des anciens combattants et de la m\u00e9moire", "libelleAbrege": "Anciens combattants et m\u00e9moire", "libelleAbrev": "ANCOM", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO801905.json b/public/organe/PO801905.json new file mode 100644 index 0000000..4d88a67 --- /dev/null +++ b/public/organe/PO801905.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO801905", "codeType": "MINISTERE", "libelle": "Secr\u00e9tariat d\u2019\u00c9tat aupr\u00e8s du ministre de la transition \u00e9cologique et de la coh\u00e9sion des territoires, charg\u00e9 de l\u2019\u00e9cologie", "libelleEdition": "aupr\u00e8s du ministre de la transition \u00e9cologique et de la coh\u00e9sion des territoires, charg\u00e9 de l\u2019\u00e9cologie", "libelleAbrege": "\u00c9cologie", "libelleAbrev": "ECOL", "viMoDe": {"dateDebut": "2022-07-05", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO802596.json b/public/organe/PO802596.json new file mode 100644 index 0000000..2c07ab3 --- /dev/null +++ b/public/organe/PO802596.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO802596", "codeType": "DELEGBUREAU", "libelle": "D\u00e9l\u00e9gation charg\u00e9e des activit\u00e9s internationales", "libelleEdition": "de la d\u00e9l\u00e9gation charg\u00e9e des activit\u00e9s internationales", "libelleAbrege": "Activit\u00e9s internationales", "libelleAbrev": "INT", "viMoDe": {"dateDebut": "2022-07-20", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO802602.json b/public/organe/PO802602.json new file mode 100644 index 0000000..a191ba3 --- /dev/null +++ b/public/organe/PO802602.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO802602", "codeType": "DELEGBUREAU", "libelle": "D\u00e9l\u00e9gation charg\u00e9e de la transparence et des repr\u00e9sentants d\u2019int\u00e9r\u00eats", "libelleEdition": "de la d\u00e9l\u00e9gation charg\u00e9e de la transparence et des repr\u00e9sentants d\u2019int\u00e9r\u00eats", "libelleAbrege": "TRANSP et REP", "libelleAbrev": "REP", "viMoDe": {"dateDebut": "2022-07-20", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO802608.json b/public/organe/PO802608.json new file mode 100644 index 0000000..10799ec --- /dev/null +++ b/public/organe/PO802608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO802608", "codeType": "DELEGBUREAU", "libelle": "D\u00e9l\u00e9gation charg\u00e9e de la communication et de la presse", "libelleEdition": "de la d\u00e9l\u00e9gation charg\u00e9e de la communication et de la presse", "libelleAbrege": "Communication et presse", "libelleAbrev": "COM", "viMoDe": {"dateDebut": "2022-07-20", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO802614.json b/public/organe/PO802614.json new file mode 100644 index 0000000..6ca0025 --- /dev/null +++ b/public/organe/PO802614.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO802614", "codeType": "DELEGBUREAU", "libelle": "D\u00e9l\u00e9gation charg\u00e9e de l\u2019application du statut du d\u00e9put\u00e9", "libelleEdition": "de la d\u00e9l\u00e9gation charg\u00e9e de l\u2019application du statut du d\u00e9put\u00e9", "libelleAbrege": "Statut du d\u00e9put\u00e9", "libelleAbrev": "DEP", "viMoDe": {"dateDebut": "2022-07-20", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO802620.json b/public/organe/PO802620.json new file mode 100644 index 0000000..e8f5d1b --- /dev/null +++ b/public/organe/PO802620.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO802620", "codeType": "DELEGBUREAU", "libelle": "D\u00e9l\u00e9gation charg\u00e9e des groupes d\u2019\u00e9tudes", "libelleEdition": "de la d\u00e9l\u00e9gation charg\u00e9e des groupes d\u2019\u00e9tudes", "libelleAbrege": "Groupes d\u2019\u00e9tudes", "libelleAbrev": "GE", "viMoDe": {"dateDebut": "2022-07-20", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO802626.json b/public/organe/PO802626.json new file mode 100644 index 0000000..4a1f1c6 --- /dev/null +++ b/public/organe/PO802626.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO802626", "codeType": "DELEGBUREAU", "libelle": "D\u00e9l\u00e9gation charg\u00e9e du patrimoine artistique et culturel", "libelleEdition": "de la d\u00e9l\u00e9gation charg\u00e9e du patrimoine artistique et culturel", "libelleAbrege": "Patrimoine artistique et culturel", "libelleAbrev": "PAT", "viMoDe": {"dateDebut": "2022-07-20", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO804107.json b/public/organe/PO804107.json new file mode 100644 index 0000000..d1b3fd0 --- /dev/null +++ b/public/organe/PO804107.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO804107", "codeType": "MISINFO", "libelle": "Mission d'\u00e9valuation et de contr\u00f4le des lois de financement de la s\u00e9curit\u00e9 sociale", "libelleEdition": "de la mission d'\u00e9valuation et de contr\u00f4le des lois de financement de la s\u00e9curit\u00e9 sociale", "libelleAbrege": "MEC S\u00e9curit\u00e9 sociale", "libelleAbrev": "MECSS", "viMoDe": {"dateDebut": "2022-08-02", "dateAgrement": null, "dateFin": null}, "organeParent": "PO420120", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO804431.json b/public/organe/PO804431.json new file mode 100644 index 0000000..f2f09da --- /dev/null +++ b/public/organe/PO804431.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO804431", "codeType": "DELEG", "libelle": "D\u00e9l\u00e9gation aux droits des enfants", "libelleEdition": "de la d\u00e9l\u00e9gation aux droits des enfants", "libelleAbrege": "D\u00e9l\u00e9gation aux droits des enfants", "libelleAbrev": "DDE", "viMoDe": {"dateDebut": "2022-09-13", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": null, "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO804597.json b/public/organe/PO804597.json new file mode 100644 index 0000000..be95294 --- /dev/null +++ b/public/organe/PO804597.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO804597", "codeType": "ORGEXTPARL", "libelle": "Conseil d\u2019administration de l\u2019Institut fran\u00e7ais", "libelleEdition": null, "libelleAbrege": "CA Institut fran\u00e7ais", "libelleAbrev": "273", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "article 9 de la loi n\u00b0 2010-873 du 27 juillet 2010, relative \u00e0 l\u2019action ext\u00e9rieure de l\u2019\u00c9tat", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO804606.json b/public/organe/PO804606.json new file mode 100644 index 0000000..0c9a004 --- /dev/null +++ b/public/organe/PO804606.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO804606", "codeType": "ORGEXTPARL", "libelle": "Conseil d\u2019administration de la soci\u00e9t\u00e9 France T\u00e9l\u00e9visions", "libelleEdition": null, "libelleAbrege": "France T\u00e9l\u00e9visions", "libelleAbrev": "167", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "article 47-1 de la loi n\u00b0 86-1067 du 30 septembre 1986", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO804612.json b/public/organe/PO804612.json new file mode 100644 index 0000000..ecb8763 --- /dev/null +++ b/public/organe/PO804612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO804612", "codeType": "ORGEXTPARL", "libelle": "Conseil d'administration de la soci\u00e9t\u00e9 en charge de l'audiovisuel ext\u00e9rieur de la France", "libelleEdition": null, "libelleAbrege": "audiovisuel ext\u00e9rieur de la France", "libelleAbrev": "250", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "article 47-3 de la loi n\u00b0 86-1067 du 30 septembre 1986", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO804878.json b/public/organe/PO804878.json new file mode 100644 index 0000000..04c537a --- /dev/null +++ b/public/organe/PO804878.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO804878", "codeType": "MISINFO", "libelle": "Mission d\u2019information charg\u00e9e de dresser un panorama et un bilan de l\u2019\u00e9ducation prioritaire", "libelleEdition": null, "libelleAbrege": "panorama et un bilan de l\u2019\u00e9ducation prioritaire", "libelleAbrev": "EDUCPRIOR", "viMoDe": {"dateDebut": "2022-09-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419604", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO804904.json b/public/organe/PO804904.json new file mode 100644 index 0000000..de2dfe6 --- /dev/null +++ b/public/organe/PO804904.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO804904", "codeType": "MISINFO", "libelle": "Mission d\u2019information sur l\u2019avenir de l\u2019audiovisuel public", "libelleEdition": null, "libelleAbrege": "Avenir de l\u2019audiovisuel public", "libelleAbrev": "AUDIOPUBL", "viMoDe": {"dateDebut": "2022-09-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419604", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO804929.json b/public/organe/PO804929.json new file mode 100644 index 0000000..969c58b --- /dev/null +++ b/public/organe/PO804929.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO804929", "codeType": "MISINFO", "libelle": "Mission d\u2019information sur les retomb\u00e9es des Jeux olympiques et paralympiques de 2024 sur le tissu \u00e9conomique et associatif local", "libelleEdition": null, "libelleAbrege": "retomb\u00e9es JOP 2024 sur le tissu \u00e9conomique et associatif", "libelleAbrev": "JOP2024", "viMoDe": {"dateDebut": "2022-09-21", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419604", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO805189.json b/public/organe/PO805189.json new file mode 100644 index 0000000..822c877 --- /dev/null +++ b/public/organe/PO805189.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO805189", "codeType": "MISINFO", "libelle": "Mission d'information sur l'enjeu alimentaire", "libelleEdition": null, "libelleAbrege": "Mission d'information sur l'enjeu alimentaire", "libelleAbrev": "ENJEUALIM", "viMoDe": {"dateDebut": "2022-10-12", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59047", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO805193.json b/public/organe/PO805193.json new file mode 100644 index 0000000..399e6cd --- /dev/null +++ b/public/organe/PO805193.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO805193", "codeType": "MISINFO", "libelle": "Mission d'information sur la politique des sanctions internationales", "libelleEdition": null, "libelleAbrege": "Mission d'information sur la politique des sanctions internationales", "libelleAbrev": "SANCTIONS", "viMoDe": {"dateDebut": "2022-10-12", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59047", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO805197.json b/public/organe/PO805197.json new file mode 100644 index 0000000..151f6ee --- /dev/null +++ b/public/organe/PO805197.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO805197", "codeType": "MISINFO", "libelle": "Mission d'information sur les enjeux migratoires aux fronti\u00e8res Sud de l\u2019Union europ\u00e9enne et en oc\u00e9an indien", "libelleEdition": null, "libelleAbrege": "MI Enjeux migratoires aux fronti\u00e8res Sud de l'Union Europ\u00e9enne & en oc\u00e9an indien", "libelleAbrev": "ENJEUX MIG", "viMoDe": {"dateDebut": "2022-10-12", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59047", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO805476.json b/public/organe/PO805476.json new file mode 100644 index 0000000..92e44b7 --- /dev/null +++ b/public/organe/PO805476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO805476", "codeType": "MISINFO", "libelle": "Mission d'information sur la sant\u00e9 mentale des femmes", "libelleEdition": "de la mission d'information sur la sant\u00e9 mentale des femmes", "libelleAbrege": "Sant\u00e9 mentale des femmes", "libelleAbrev": "SANTEFEMME", "viMoDe": {"dateDebut": "2022-10-27", "dateAgrement": null, "dateFin": null}, "organeParent": "PO201269", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO805507.json b/public/organe/PO805507.json new file mode 100644 index 0000000..81e8811 --- /dev/null +++ b/public/organe/PO805507.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO805507", "codeType": "MISINFO", "libelle": "Mission d'information sur la budg\u00e9tisation int\u00e9grant l\u2019\u00e9galit\u00e9", "libelleEdition": "de la mission d'information sur la budg\u00e9tisation int\u00e9grant l\u2019\u00e9galit\u00e9", "libelleAbrege": "Budg\u00e9tisation int\u00e9grant l\u2019\u00e9galit\u00e9", "libelleAbrev": "BUDGETGENR", "viMoDe": {"dateDebut": "2022-10-27", "dateAgrement": null, "dateFin": null}, "organeParent": "PO201269", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO805625.json b/public/organe/PO805625.json new file mode 100644 index 0000000..9589997 --- /dev/null +++ b/public/organe/PO805625.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO805625", "codeType": "MISINFO", "libelle": "Mission d'information sur la gestion de l'eau pour les activit\u00e9s \u00e9conomiques (agriculture, industrie, \u00e9nergie, tourisme)", "libelleEdition": "de la mission d'information sur la gestion de l'eau pour les activit\u00e9s \u00e9conomiques (agriculture, industrie, \u00e9nergie, tourisme)", "libelleAbrege": "MI GESTION DE L'EAU", "libelleAbrev": "MI EAU", "viMoDe": {"dateDebut": "2022-10-26", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419610", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO805632.json b/public/organe/PO805632.json new file mode 100644 index 0000000..9c161c1 --- /dev/null +++ b/public/organe/PO805632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO805632", "codeType": "MISINFO", "libelle": "Mission d'information sur les moyens de faire baisser les prix du logement en zones tendues (hors Ile-de-France)", "libelleEdition": "de la mission d'information sur les moyens de faire baisser les prix du logement en zones tendues (hors Ile-de-France)", "libelleAbrege": "MI BAISSE PRIX LOGEMENT", "libelleAbrev": "MI LOGT", "viMoDe": {"dateDebut": "2022-10-26", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419610", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO805639.json b/public/organe/PO805639.json new file mode 100644 index 0000000..0ceee9f --- /dev/null +++ b/public/organe/PO805639.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO805639", "codeType": "MISINFO", "libelle": "Mission d'information sur le Quick commerce", "libelleEdition": "de la mission d'information sur le Quick commerce", "libelleAbrege": "MI QUICK COMMERCE", "libelleAbrev": "MIQUICKCOM", "viMoDe": {"dateDebut": "2022-10-26", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419610", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO805653.json b/public/organe/PO805653.json new file mode 100644 index 0000000..bb96837 --- /dev/null +++ b/public/organe/PO805653.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO805653", "codeType": "MISINFO", "libelle": "Mission d'\u00e9valuation de la loi n\u00b0 2019-1147 du 8 novembre 2019 relative \u00e0 l'\u00e9nergie et au climat", "libelleEdition": "de la mission d'\u00e9valuation de la loi n\u00b0 2019-1147 du 8 novembre 2019 relative \u00e0 l'\u00e9nergie et au climat", "libelleAbrege": "\u00e9valuation loi \u00e9nergie climat", "libelleAbrev": "ENER CLIMA", "viMoDe": {"dateDebut": "2022-10-26", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419610", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO806018.json b/public/organe/PO806018.json new file mode 100644 index 0000000..2408074 --- /dev/null +++ b/public/organe/PO806018.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO806018", "codeType": "MISINFO", "libelle": "Mission d'information sur la lutte contre les violences faites aux mineurs en outre-mer", "libelleEdition": "de la mission d\u2019information sur la lutte contre les violences faites aux mineurs en outre-mer", "libelleAbrege": "MI Lutte contre les violences faites aux mineurs en outre-mer", "libelleAbrev": "VIOLENCEMI", "viMoDe": {"dateDebut": "2022-11-16", "dateAgrement": null, "dateFin": null}, "organeParent": "PO804431", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO806169.json b/public/organe/PO806169.json new file mode 100644 index 0000000..f9edee2 --- /dev/null +++ b/public/organe/PO806169.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO806169", "codeType": "MISINFO", "libelle": "Mission d\u2019information sur la g\u00e9opolitique du sport", "libelleEdition": "Mission d\u2019information sur la g\u00e9opolitique du sport", "libelleAbrege": "Mission d\u2019information sur la g\u00e9opolitique du sport", "libelleAbrev": "GEO SPORT", "viMoDe": {"dateDebut": "2022-11-23", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59047", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO806319.json b/public/organe/PO806319.json new file mode 100644 index 0000000..17da464 --- /dev/null +++ b/public/organe/PO806319.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO806319", "codeType": "CMP", "libelle": "Commission mixte paritaire charg\u00e9e de proposer un texte sur les dispositions restant en discussion du projet de loi de programmation des finances publiques pour les ann\u00e9es 2023 \u00e0 2027", "libelleEdition": "de la commission mixte paritaire charg\u00e9e de proposer un texte sur les dispositions restant en discussion du projet de loi de programmation des finances publiques pour les ann\u00e9es 2023 \u00e0 2027", "libelleAbrege": "Programmation des finances publiques pour les ann\u00e9es 2023 \u00e0 2027", "libelleAbrev": "272", "viMoDe": {"dateDebut": "2022-11-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO806326.json b/public/organe/PO806326.json new file mode 100644 index 0000000..6b59c72 --- /dev/null +++ b/public/organe/PO806326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806326", "codeType": "MINISTERE", "libelle": "Minist\u00e8re aupr\u00e8s du ministre de l\u2019int\u00e9rieur et des outre-mer et du ministre de la transition \u00e9cologique et de la coh\u00e9sion des territoires, charg\u00e9 des collectivit\u00e9s territoriales et de la ruralit\u00e9", "libelleEdition": "aupr\u00e8s du ministre de l\u2019int\u00e9rieur et des outre-mer et du ministre de la transition \u00e9cologique et de la coh\u00e9sion des territoires, charg\u00e9 des collectivit\u00e9s territoriales et de la ruralit\u00e9", "libelleAbrege": "Collectivit\u00e9s territoriales et ruralit\u00e9", "libelleAbrev": "COLRU", "viMoDe": {"dateDebut": "2022-11-29", "dateAgrement": null, "dateFin": null}, "organeParent": "PO791579"}} \ No newline at end of file diff --git a/public/organe/PO806417.json b/public/organe/PO806417.json new file mode 100644 index 0000000..8ff9a4b --- /dev/null +++ b/public/organe/PO806417.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO806417", "codeType": "CNPE", "libelle": "Commission d\u2019enqu\u00eate charg\u00e9e de faire la lumi\u00e8re sur les dysfonctionnements au sein de l\u2019administration p\u00e9nitentiaire et de l\u2019appareil judiciaire ayant conduit \u00e0 l\u2019assassinat d\u2019un d\u00e9tenu le 2 mars 2022 \u00e0 la maison centrale d\u2019Arles", "libelleEdition": "de la commission d\u2019enqu\u00eate charg\u00e9e de faire la lumi\u00e8re sur les dysfonctionnements au sein de l\u2019administration p\u00e9nitentiaire et de l\u2019appareil judiciaire ayant conduit \u00e0 l\u2019assassinat d\u2019un d\u00e9tenu le 2 mars 2022 \u00e0 la maison centrale d\u2019Arles", "libelleAbrege": "Commission d'enqu\u00eate sur l'assassinat d'un d\u00e9tenu \u00e0 la maison centrale d'Arles", "libelleAbrev": "CEDYSAP", "viMoDe": {"dateDebut": "2022-11-28", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO806426.json b/public/organe/PO806426.json new file mode 100644 index 0000000..3664b6f --- /dev/null +++ b/public/organe/PO806426.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806426", "codeType": "PARPOL", "libelle": "Alliance centriste", "libelleEdition": null, "libelleAbrege": "Alliance centriste", "libelleAbrev": "ALCEN", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO806428.json b/public/organe/PO806428.json new file mode 100644 index 0000000..870a234 --- /dev/null +++ b/public/organe/PO806428.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806428", "codeType": "PARPOL", "libelle": "Ambition R\u00e9union", "libelleEdition": null, "libelleAbrege": "Ambition R\u00e9union", "libelleAbrev": "AMREU", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO806430.json b/public/organe/PO806430.json new file mode 100644 index 0000000..6082764 --- /dev/null +++ b/public/organe/PO806430.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806430", "codeType": "PARPOL", "libelle": "Ensemble", "libelleEdition": null, "libelleAbrege": "Ensemble", "libelleAbrev": "ENSEM", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO806432.json b/public/organe/PO806432.json new file mode 100644 index 0000000..4ecea63 --- /dev/null +++ b/public/organe/PO806432.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806432", "codeType": "PARPOL", "libelle": "Les \u00c9cologistes-mouvement \u00e9cologiste independant", "libelleEdition": null, "libelleAbrege": "Les \u00c9cologistes-mouvement \u00e9cologiste independant", "libelleAbrev": "ECOI", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO806434.json b/public/organe/PO806434.json new file mode 100644 index 0000000..2fed2bc --- /dev/null +++ b/public/organe/PO806434.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806434", "codeType": "PARPOL", "libelle": "Parti progressiste d\u00e9mocratique guadeloup\u00e9en", "libelleEdition": null, "libelleAbrege": "Parti progressiste d\u00e9mocratique guadeloup\u00e9en", "libelleAbrev": "PPROG", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO806436.json b/public/organe/PO806436.json new file mode 100644 index 0000000..9107d38 --- /dev/null +++ b/public/organe/PO806436.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806436", "codeType": "PARPOL", "libelle": "P\u00e9yi-A", "libelleEdition": null, "libelleAbrege": "P\u00e9yi-A", "libelleAbrev": "PEYIA", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO806438.json b/public/organe/PO806438.json new file mode 100644 index 0000000..17deb82 --- /dev/null +++ b/public/organe/PO806438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806438", "codeType": "PARPOL", "libelle": "Progr\u00e8s-974", "libelleEdition": null, "libelleAbrege": "Progr\u00e8s-974", "libelleAbrev": "P974", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO806440.json b/public/organe/PO806440.json new file mode 100644 index 0000000..7b8a89e --- /dev/null +++ b/public/organe/PO806440.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806440", "codeType": "PARPOL", "libelle": "R\u00e9union libre", "libelleEdition": null, "libelleAbrege": "R\u00e9union libre", "libelleAbrev": "REULI", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO806442.json b/public/organe/PO806442.json new file mode 100644 index 0000000..2d0d53f --- /dev/null +++ b/public/organe/PO806442.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806442", "codeType": "PARPOL", "libelle": "R\u00e9zistan's \u00c9galit\u00e9 974", "libelleEdition": null, "libelleAbrege": "R\u00e9zistan's \u00c9galit\u00e9 974", "libelleAbrev": "REZRE", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO806444.json b/public/organe/PO806444.json new file mode 100644 index 0000000..2cf77ea --- /dev/null +++ b/public/organe/PO806444.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO806444", "codeType": "PARPOL", "libelle": "Union des d\u00e9mocrates europ\u00e9ens, centristes et ind\u00e9pendants", "libelleEdition": null, "libelleAbrege": "Union des d\u00e9mocrates europ\u00e9ens, centristes et ind\u00e9pendants", "libelleAbrev": "UDIE", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO807036.json b/public/organe/PO807036.json new file mode 100644 index 0000000..ca48484 --- /dev/null +++ b/public/organe/PO807036.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807036", "codeType": "GE", "libelle": "Jeu vid\u00e9o", "libelleEdition": "JEU VID\u00c9O", "libelleAbrege": "JEU VID\u00c9O", "libelleAbrev": "JEU VIDEO", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Samy Imourra", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807041.json b/public/organe/PO807041.json new file mode 100644 index 0000000..d30200e --- /dev/null +++ b/public/organe/PO807041.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807041", "codeType": "GA", "libelle": "France-Mont\u00e9n\u00e9gro", "libelleEdition": "de France-Mont\u00e9n\u00e9gro", "libelleAbrege": "Mont\u00e9n\u00e9gro", "libelleAbrev": "MONT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Lou Ansaldi", "secretaire02": null}, "listePays": {"paysRef": "GOP756411"}}} \ No newline at end of file diff --git a/public/organe/PO807051.json b/public/organe/PO807051.json new file mode 100644 index 0000000..617aa84 --- /dev/null +++ b/public/organe/PO807051.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807051", "codeType": "GA", "libelle": "France-Finlande", "libelleEdition": "de France-Finlande", "libelleAbrege": "Finlande", "libelleAbrev": "FIN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Alexis Verguin", "secretaire02": null}, "listePays": {"paysRef": "GOP756397"}}} \ No newline at end of file diff --git a/public/organe/PO807056.json b/public/organe/PO807056.json new file mode 100644 index 0000000..856832c --- /dev/null +++ b/public/organe/PO807056.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807056", "codeType": "GA", "libelle": "France-Turquie", "libelleEdition": "de France-Turquie", "libelleAbrege": "Turquie", "libelleAbrev": "TURQ", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bruno Legrain", "secretaire02": null}, "listePays": {"paysRef": "GOP756448"}}} \ No newline at end of file diff --git a/public/organe/PO807061.json b/public/organe/PO807061.json new file mode 100644 index 0000000..047a1ce --- /dev/null +++ b/public/organe/PO807061.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807061", "codeType": "GA", "libelle": "France-Burundi Rwanda", "libelleEdition": null, "libelleAbrege": "Burundi Rwanda", "libelleAbrev": "BURW", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Charles Boriaud", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807066.json b/public/organe/PO807066.json new file mode 100644 index 0000000..7cc0d25 --- /dev/null +++ b/public/organe/PO807066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807066", "codeType": "GA", "libelle": "France-Kenya Ouganda Tanzanie", "libelleEdition": null, "libelleAbrege": "Kenya Ouganda Tanzanie", "libelleAbrev": "KOT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Elena Cr\u00e9tois-Validzic", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807071.json b/public/organe/PO807071.json new file mode 100644 index 0000000..660bb33 --- /dev/null +++ b/public/organe/PO807071.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807071", "codeType": "GE", "libelle": "Kurdes", "libelleEdition": "KURDES", "libelleAbrege": "KURDES", "libelleAbrev": "KURDES", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Joachim Delavenne", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807076.json b/public/organe/PO807076.json new file mode 100644 index 0000000..ed2b5f9 --- /dev/null +++ b/public/organe/PO807076.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807076", "codeType": "GA", "libelle": "France-Malte", "libelleEdition": "de France-Malte", "libelleAbrege": "Malte", "libelleAbrev": "MALT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Roland Beaume", "secretaire02": null}, "listePays": {"paysRef": "GOP756435"}}} \ No newline at end of file diff --git a/public/organe/PO807081.json b/public/organe/PO807081.json new file mode 100644 index 0000000..2a58b83 --- /dev/null +++ b/public/organe/PO807081.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807081", "codeType": "GE", "libelle": "Langues et cultures r\u00e9gionales", "libelleEdition": "LANGUES ET CULTURES R\u00c9GIONALES", "libelleAbrege": "LANGUES ET CULTURES R\u00c9GIONALES", "libelleAbrev": "LANGUESREG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Antoine Forcade", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807086.json b/public/organe/PO807086.json new file mode 100644 index 0000000..eb87586 --- /dev/null +++ b/public/organe/PO807086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807086", "codeType": "GA", "libelle": "France-Iran", "libelleEdition": "de France-Iran", "libelleAbrege": "Iran", "libelleAbrev": "IRAN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Julien Barbot", "secretaire02": null}, "listePays": {"paysRef": "GOP756444"}}} \ No newline at end of file diff --git a/public/organe/PO807091.json b/public/organe/PO807091.json new file mode 100644 index 0000000..6fdd78c --- /dev/null +++ b/public/organe/PO807091.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807091", "codeType": "GA", "libelle": "France-Chypre", "libelleEdition": "de France-Chypre", "libelleAbrege": "Chypre", "libelleAbrev": "CHY", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Julien Barbot", "secretaire02": null}, "listePays": {"paysRef": "GOP756483"}}} \ No newline at end of file diff --git a/public/organe/PO807096.json b/public/organe/PO807096.json new file mode 100644 index 0000000..137988c --- /dev/null +++ b/public/organe/PO807096.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807096", "codeType": "GA", "libelle": "France-Albanie", "libelleEdition": "de France-Albanie", "libelleAbrege": "Albanie", "libelleAbrev": "ALB", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Natacha Barcelo", "secretaire02": null}, "listePays": {"paysRef": "GOP756415"}}} \ No newline at end of file diff --git a/public/organe/PO807101.json b/public/organe/PO807101.json new file mode 100644 index 0000000..db368b1 --- /dev/null +++ b/public/organe/PO807101.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807101", "codeType": "GE", "libelle": "Littoral", "libelleEdition": "LITTORAL", "libelleAbrege": "LITTORAL", "libelleAbrev": "LITTORAL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Jean Gaudioso", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807106.json b/public/organe/PO807106.json new file mode 100644 index 0000000..ab69525 --- /dev/null +++ b/public/organe/PO807106.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807106", "codeType": "GEVI", "libelle": "Groupe d'\u00e9tudes \u00e0 vocation internationale sur les relations avec le Saint Si\u00e8ge", "libelleEdition": "de Groupe d'\u00e9tudes \u00e0 vocation internationale sur les relations avec le Saint Si\u00e8ge", "libelleAbrege": "Vatican", "libelleAbrev": "VAT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bruno Legrain", "secretaire02": null}, "listePays": {"paysRef": "GOP756419"}}} \ No newline at end of file diff --git a/public/organe/PO807116.json b/public/organe/PO807116.json new file mode 100644 index 0000000..de95453 --- /dev/null +++ b/public/organe/PO807116.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807116", "codeType": "GA", "libelle": "France-Bolivie", "libelleEdition": "de France-Bolivie", "libelleAbrege": "Bolivie", "libelleAbrev": "BOL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Jeanne Mazi\u00e8re", "secretaire02": null}, "listePays": {"paysRef": "GOP756569"}}} \ No newline at end of file diff --git a/public/organe/PO807121.json b/public/organe/PO807121.json new file mode 100644 index 0000000..1056ef5 --- /dev/null +++ b/public/organe/PO807121.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807121", "codeType": "GA", "libelle": "France-Vanuatu", "libelleEdition": "de France-Vanuatu", "libelleAbrege": "Vanuatu", "libelleAbrev": "VAN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Val\u00e9rie Checketts", "secretaire02": null}, "listePays": {"paysRef": "GOP756628"}}} \ No newline at end of file diff --git a/public/organe/PO807126.json b/public/organe/PO807126.json new file mode 100644 index 0000000..acbb2d9 --- /dev/null +++ b/public/organe/PO807126.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807126", "codeType": "GA", "libelle": "France-Roumanie", "libelleEdition": "de France-Roumanie", "libelleAbrege": "Roumanie", "libelleAbrev": "ROU", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Lucian Iordache", "secretaire02": null}, "listePays": {"paysRef": "GOP756406"}}} \ No newline at end of file diff --git a/public/organe/PO807136.json b/public/organe/PO807136.json new file mode 100644 index 0000000..72e8a57 --- /dev/null +++ b/public/organe/PO807136.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807136", "codeType": "GA", "libelle": "France-Burkina Faso", "libelleEdition": "de France-Burkina Faso", "libelleAbrege": "Burkina Faso", "libelleAbrev": "BURK", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Aur\u00e9lien Nicodeau", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807141.json b/public/organe/PO807141.json new file mode 100644 index 0000000..64658d1 --- /dev/null +++ b/public/organe/PO807141.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807141", "codeType": "GE", "libelle": "Maladies rares", "libelleEdition": "MALADIES RARES", "libelleAbrege": "MALADIES RARES", "libelleAbrev": "MALADIERAR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Julien Bricault", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807146.json b/public/organe/PO807146.json new file mode 100644 index 0000000..9eb0429 --- /dev/null +++ b/public/organe/PO807146.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807146", "codeType": "GA", "libelle": "France-Soudan", "libelleEdition": "de France-Soudan", "libelleAbrege": "Soudan", "libelleAbrev": "SOUD", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "listePays": {"paysRef": "GOP756532"}}} \ No newline at end of file diff --git a/public/organe/PO807151.json b/public/organe/PO807151.json new file mode 100644 index 0000000..d185533 --- /dev/null +++ b/public/organe/PO807151.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807151", "codeType": "GA", "libelle": "France-R\u00e9publique d'Autriche", "libelleEdition": "de France-R\u00e9publique d'Autriche", "libelleAbrege": "Autriche", "libelleAbrev": "A", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Val\u00e9rie Checketts", "secretaire02": null}, "listePays": {"paysRef": "GOP756402"}}} \ No newline at end of file diff --git a/public/organe/PO807166.json b/public/organe/PO807166.json new file mode 100644 index 0000000..1bf981c --- /dev/null +++ b/public/organe/PO807166.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807166", "codeType": "GA", "libelle": "France-Bangladesh", "libelleEdition": "de France-Bangladesh", "libelleAbrege": "Bangladesh", "libelleAbrev": "BANG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Ren\u00e9 Carl\u00e9", "secretaire02": null}, "listePays": {"paysRef": "GOP756475"}}} \ No newline at end of file diff --git a/public/organe/PO807176.json b/public/organe/PO807176.json new file mode 100644 index 0000000..a65a99f --- /dev/null +++ b/public/organe/PO807176.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807176", "codeType": "GA", "libelle": "France-Gambie", "libelleEdition": "de France-Gambie", "libelleAbrege": "Gambie", "libelleAbrev": "GAMB", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Philippe Sagot", "secretaire02": null}, "listePays": {"paysRef": "GOP756495"}}} \ No newline at end of file diff --git a/public/organe/PO807181.json b/public/organe/PO807181.json new file mode 100644 index 0000000..33dc8d9 --- /dev/null +++ b/public/organe/PO807181.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807181", "codeType": "GA", "libelle": "France-Venezuela", "libelleEdition": "de France-Venezuela", "libelleAbrege": "Venezuela", "libelleAbrev": "VEN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Blandine Le Gall", "secretaire02": null}, "listePays": {"paysRef": "GOP756575"}}} \ No newline at end of file diff --git a/public/organe/PO807186.json b/public/organe/PO807186.json new file mode 100644 index 0000000..da69d77 --- /dev/null +++ b/public/organe/PO807186.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807186", "codeType": "GA", "libelle": "France-B\u00e9nin", "libelleEdition": "de France-B\u00e9nin", "libelleAbrege": "B\u00e9nin", "libelleAbrev": "BEN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Val\u00e9rie Checketts", "secretaire02": null}, "listePays": {"paysRef": "GOP756516"}}} \ No newline at end of file diff --git a/public/organe/PO807191.json b/public/organe/PO807191.json new file mode 100644 index 0000000..d33076f --- /dev/null +++ b/public/organe/PO807191.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807191", "codeType": "GE", "libelle": "Montagne", "libelleEdition": "MONTAGNE", "libelleAbrege": "MONTAGNE", "libelleAbrev": "MONTAGNE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thomas Laudignon", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807201.json b/public/organe/PO807201.json new file mode 100644 index 0000000..bb172b9 --- /dev/null +++ b/public/organe/PO807201.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807201", "codeType": "GA", "libelle": "France-Niger", "libelleEdition": "de France-Niger", "libelleAbrege": "Niger", "libelleAbrev": "NIG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Graziella Raffy", "secretaire02": null}, "listePays": {"paysRef": "GOP756526"}}} \ No newline at end of file diff --git a/public/organe/PO807206.json b/public/organe/PO807206.json new file mode 100644 index 0000000..66ec1eb --- /dev/null +++ b/public/organe/PO807206.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807206", "codeType": "GA", "libelle": "France-Guin\u00e9e \u00e9quatoriale", "libelleEdition": "de France-Guin\u00e9e \u00e9quatoriale", "libelleAbrege": "Guin\u00e9e \u00e9quatoriale", "libelleAbrev": "GUINEQ", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Dorian Faucon", "secretaire02": null}, "listePays": {"paysRef": "GOP756505"}}} \ No newline at end of file diff --git a/public/organe/PO807216.json b/public/organe/PO807216.json new file mode 100644 index 0000000..cc62819 --- /dev/null +++ b/public/organe/PO807216.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807216", "codeType": "GA", "libelle": "France-Laos", "libelleEdition": "de France-Laos", "libelleAbrege": "Laos", "libelleAbrev": "LAO", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Karine Depinc\u00e9", "secretaire02": null}, "listePays": {"paysRef": "GOP756472"}}} \ No newline at end of file diff --git a/public/organe/PO807221.json b/public/organe/PO807221.json new file mode 100644 index 0000000..d7a5458 --- /dev/null +++ b/public/organe/PO807221.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807221", "codeType": "GE", "libelle": "Pauvret\u00e9, pr\u00e9carit\u00e9, non-recours aux droits et sans-abri", "libelleEdition": "PAUVRET\u00c9, PR\u00c9CARIT\u00c9, NON-RECOURS AUX DROITS ET SANS-ABRI", "libelleAbrege": "PAUVRET\u00c9, PR\u00c9CARIT\u00c9, NON-RECOURS AUX DROITS ET SANS-ABRI", "libelleAbrev": "PAUVRETE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme L\u00e9a Degorre", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807226.json b/public/organe/PO807226.json new file mode 100644 index 0000000..a10133c --- /dev/null +++ b/public/organe/PO807226.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807226", "codeType": "GA", "libelle": "France-Japon", "libelleEdition": "de France-Japon", "libelleAbrege": "Japon", "libelleAbrev": "JAP", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Simon Issard", "secretaire02": null}, "listePays": {"paysRef": "GOP756454"}}} \ No newline at end of file diff --git a/public/organe/PO807241.json b/public/organe/PO807241.json new file mode 100644 index 0000000..c563236 --- /dev/null +++ b/public/organe/PO807241.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807241", "codeType": "GA", "libelle": "France-Azerba\u00efdjan", "libelleEdition": "de France-Azerba\u00efdjan", "libelleAbrege": "Azerba\u00efdjan", "libelleAbrev": "AZE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Tomas Aparisi de Lannoy", "secretaire02": null}, "listePays": {"paysRef": "GOP756482"}}} \ No newline at end of file diff --git a/public/organe/PO807246.json b/public/organe/PO807246.json new file mode 100644 index 0000000..5279467 --- /dev/null +++ b/public/organe/PO807246.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807246", "codeType": "GA", "libelle": "France-Royaume des Pays-Bas", "libelleEdition": "de France-Royaume des Pays-Bas", "libelleAbrege": "Pays-Bas", "libelleAbrev": "PB", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thierry Deilhes", "secretaire02": null}, "listePays": {"paysRef": "GOP756429"}}} \ No newline at end of file diff --git a/public/organe/PO807256.json b/public/organe/PO807256.json new file mode 100644 index 0000000..e816bf8 --- /dev/null +++ b/public/organe/PO807256.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807256", "codeType": "GA", "libelle": "France-Canada", "libelleEdition": "de France-Canada", "libelleAbrege": "Canada", "libelleAbrev": "CAN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thierry Deilhes", "secretaire02": null}, "listePays": {"paysRef": "GOP756553"}}} \ No newline at end of file diff --git a/public/organe/PO807261.json b/public/organe/PO807261.json new file mode 100644 index 0000000..a19d395 --- /dev/null +++ b/public/organe/PO807261.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807261", "codeType": "GE", "libelle": "Arctique, Antarctique, Terres australes et antarctiques fran\u00e7aises et grands fonds oc\u00e9aniques", "libelleEdition": "ARCTIQUE, ANTARCTIQUE, TERRES AUSTRALES ET ANTARCTIQUES FRAN\u00c7AISES ET GRANDS FONDS OC\u00c9ANIQUES", "libelleAbrege": "ARCTIQUE, ANTARCTIQUE, TERRES AUSTRALES ET ANTARCTIQUES FRAN\u00c7AISES, GRANDS FONDS", "libelleAbrev": "ARCTIQUE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Louis Ribout", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807271.json b/public/organe/PO807271.json new file mode 100644 index 0000000..f567d3d --- /dev/null +++ b/public/organe/PO807271.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807271", "codeType": "GA", "libelle": "France-Guin\u00e9e", "libelleEdition": "de France-Guin\u00e9e", "libelleAbrege": "Guin\u00e9e", "libelleAbrev": "GUI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Guillaume Bangoura", "secretaire02": null}, "listePays": {"paysRef": "GOP756519"}}} \ No newline at end of file diff --git a/public/organe/PO807286.json b/public/organe/PO807286.json new file mode 100644 index 0000000..6b90942 --- /dev/null +++ b/public/organe/PO807286.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807286", "codeType": "GA", "libelle": "France-Ukraine", "libelleEdition": "de France-Ukraine", "libelleAbrege": "Ukraine", "libelleAbrev": "URK", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre-Nicolas Guesdon", "secretaire02": null}, "listePays": {"paysRef": "GOP756439"}}} \ No newline at end of file diff --git a/public/organe/PO807291.json b/public/organe/PO807291.json new file mode 100644 index 0000000..90bca5b --- /dev/null +++ b/public/organe/PO807291.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807291", "codeType": "GE", "libelle": "Amiante", "libelleEdition": "AMIANTE", "libelleAbrege": "AMIANTE", "libelleAbrev": "AMIANTE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. William Bertrand", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807296.json b/public/organe/PO807296.json new file mode 100644 index 0000000..a499a31 --- /dev/null +++ b/public/organe/PO807296.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807296", "codeType": "GA", "libelle": "France-Mexique", "libelleEdition": "de France-Mexique", "libelleAbrege": "Mexique", "libelleAbrev": "MEX", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Axel Maybon", "secretaire02": null}, "listePays": {"paysRef": "GOP756556"}}} \ No newline at end of file diff --git a/public/organe/PO807301.json b/public/organe/PO807301.json new file mode 100644 index 0000000..e372d73 --- /dev/null +++ b/public/organe/PO807301.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807301", "codeType": "GE", "libelle": "Antis\u00e9mitisme", "libelleEdition": "ANTIS\u00c9MITISME", "libelleAbrege": "ANTIS\u00c9MITISME", "libelleAbrev": "ANTISEMITI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Benjamin Deslus", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807306.json b/public/organe/PO807306.json new file mode 100644 index 0000000..d6f924d --- /dev/null +++ b/public/organe/PO807306.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807306", "codeType": "GE", "libelle": "Prisons et conditions carc\u00e9rales", "libelleEdition": "PRISONS ET CONDITIONS CARC\u00c9RALES", "libelleAbrege": "PRISONS ET CONDITIONS CARC\u00c9RALES", "libelleAbrev": "PRISONS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Emilien Ricardo", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807311.json b/public/organe/PO807311.json new file mode 100644 index 0000000..5d9edea --- /dev/null +++ b/public/organe/PO807311.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807311", "codeType": "GA", "libelle": "France-Bosnie-Herz\u00e9govine", "libelleEdition": "de France-Bosnie-Herz\u00e9govine", "libelleAbrege": "Bosnie-Herz\u00e9govine", "libelleAbrev": "BHZ", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Simon Revol", "secretaire02": null}, "listePays": {"paysRef": "GOP756409"}}} \ No newline at end of file diff --git a/public/organe/PO807316.json b/public/organe/PO807316.json new file mode 100644 index 0000000..7fbc622 --- /dev/null +++ b/public/organe/PO807316.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807316", "codeType": "GE", "libelle": "Autisme", "libelleEdition": "AUTISME", "libelleAbrege": "AUTISME", "libelleAbrev": "AUTISME", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Alix de Roubin", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807326.json b/public/organe/PO807326.json new file mode 100644 index 0000000..a07cf7a --- /dev/null +++ b/public/organe/PO807326.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807326", "codeType": "GA", "libelle": "France-Maroc", "libelleEdition": "de France-Maroc", "libelleAbrege": "Maroc", "libelleAbrev": "MAR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Anne-C\u00e9cile Blauwblomme-Delcroix", "secretaire02": null}, "listePays": {"paysRef": "GOP756539"}}} \ No newline at end of file diff --git a/public/organe/PO807336.json b/public/organe/PO807336.json new file mode 100644 index 0000000..4cc46f1 --- /dev/null +++ b/public/organe/PO807336.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807336", "codeType": "GA", "libelle": "France-Togo", "libelleEdition": "de France-Togo", "libelleAbrege": "Togo", "libelleAbrev": "TOG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Val\u00e9rie Checketts", "secretaire02": null}, "listePays": {"paysRef": "GOP756534"}}} \ No newline at end of file diff --git a/public/organe/PO807341.json b/public/organe/PO807341.json new file mode 100644 index 0000000..73d3386 --- /dev/null +++ b/public/organe/PO807341.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807341", "codeType": "GE", "libelle": "Attractivit\u00e9 \u00e9conomique et export", "libelleEdition": "ATTRACTIVIT\u00c9 \u00c9CONOMIQUE ET EXPORT", "libelleAbrege": "ATTRACTIVIT\u00c9 \u00c9CONOMIQUE ET EXPORT", "libelleAbrev": "ATTRACTIVI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Graziella Raffy", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807346.json b/public/organe/PO807346.json new file mode 100644 index 0000000..b8029fc --- /dev/null +++ b/public/organe/PO807346.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807346", "codeType": "GA", "libelle": "France-Liban", "libelleEdition": "de France-Liban", "libelleAbrege": "Liban", "libelleAbrev": "LIBAN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Antoine Lenormand", "secretaire02": null}, "listePays": {"paysRef": "GOP756445"}}} \ No newline at end of file diff --git a/public/organe/PO807351.json b/public/organe/PO807351.json new file mode 100644 index 0000000..fa6a259 --- /dev/null +++ b/public/organe/PO807351.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807351", "codeType": "GA", "libelle": "France-Luxembourg", "libelleEdition": "de France-Luxembourg", "libelleAbrege": "Luxembourg", "libelleAbrev": "LUX", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Val\u00e9rie Checketts", "secretaire02": null}, "listePays": {"paysRef": "GOP756431"}}} \ No newline at end of file diff --git a/public/organe/PO807366.json b/public/organe/PO807366.json new file mode 100644 index 0000000..e6765a0 --- /dev/null +++ b/public/organe/PO807366.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807366", "codeType": "GA", "libelle": "France-Gr\u00e8ce", "libelleEdition": "de France-Gr\u00e8ce", "libelleAbrege": "Gr\u00e8ce", "libelleAbrev": "GR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Fran\u00e7ois Marcelot", "secretaire02": null}, "listePays": {"paysRef": "GOP756416"}}} \ No newline at end of file diff --git a/public/organe/PO807371.json b/public/organe/PO807371.json new file mode 100644 index 0000000..885d2f3 --- /dev/null +++ b/public/organe/PO807371.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807371", "codeType": "GE", "libelle": "Cancer", "libelleEdition": "CANCER", "libelleAbrege": "CANCER", "libelleAbrev": "CANCER", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Maxime Giletta", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807391.json b/public/organe/PO807391.json new file mode 100644 index 0000000..8befc36 --- /dev/null +++ b/public/organe/PO807391.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807391", "codeType": "GA", "libelle": "France-Australie", "libelleEdition": "de France-Australie", "libelleAbrege": "Australie", "libelleAbrev": "AUS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Maxine Gayraud", "secretaire02": null}, "listePays": {"paysRef": "GOP756607"}}} \ No newline at end of file diff --git a/public/organe/PO807396.json b/public/organe/PO807396.json new file mode 100644 index 0000000..dc93e8d --- /dev/null +++ b/public/organe/PO807396.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807396", "codeType": "GE", "libelle": "Cin\u00e9ma et production audiovisuelle", "libelleEdition": "CIN\u00c9MA ET PRODUCTION AUDIOVISUELLE", "libelleAbrege": "CIN\u00c9MA ET PRODUCTION AUDIOVISUELLE", "libelleAbrev": "CINEMA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Fran\u00e7ois-Xavier Carabelli", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807401.json b/public/organe/PO807401.json new file mode 100644 index 0000000..89f26dc --- /dev/null +++ b/public/organe/PO807401.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807401", "codeType": "GA", "libelle": "France-Oman", "libelleEdition": "de France-Oman", "libelleAbrege": "Oman", "libelleAbrev": "OMAN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Fran\u00e7ois-Xavier Carabelli", "secretaire02": null}, "listePays": {"paysRef": "GOP756479"}}} \ No newline at end of file diff --git a/public/organe/PO807406.json b/public/organe/PO807406.json new file mode 100644 index 0000000..b8a6c31 --- /dev/null +++ b/public/organe/PO807406.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807406", "codeType": "GE", "libelle": "Cheval", "libelleEdition": "CHEVAL", "libelleAbrege": "CHEVAL", "libelleAbrev": "CHEVAL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Matthieu de Vallavieille", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807411.json b/public/organe/PO807411.json new file mode 100644 index 0000000..419d949 --- /dev/null +++ b/public/organe/PO807411.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807411", "codeType": "GE", "libelle": "Sant\u00e9 environnementale, pr\u00e9vention et num\u00e9rique", "libelleEdition": "SANT\u00c9 ENVIRONNEMENTALE, PR\u00c9VENTION ET NUM\u00c9RIQUE", "libelleAbrege": "SANT\u00c9 ENVIRONNEMENTALE, PR\u00c9VENTION ET NUM\u00c9RIQUE", "libelleAbrev": "SANTEENVIR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Alicia Cusan", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807416.json b/public/organe/PO807416.json new file mode 100644 index 0000000..bd081a5 --- /dev/null +++ b/public/organe/PO807416.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807416", "codeType": "GA", "libelle": "France-Emirats Arabes Unis", "libelleEdition": "de France-Emirats Arabes Unis", "libelleAbrege": "Emirats Arabes Unis", "libelleAbrev": "EAU", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Simon Revol", "secretaire02": null}, "listePays": {"paysRef": "GOP756476"}}} \ No newline at end of file diff --git a/public/organe/PO807421.json b/public/organe/PO807421.json new file mode 100644 index 0000000..28a1141 --- /dev/null +++ b/public/organe/PO807421.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807421", "codeType": "GE", "libelle": "Chr\u00e9tiens d'orient", "libelleEdition": "CHR\u00c9TIENS D'ORIENT", "libelleAbrege": "CHR\u00c9TIENS D'ORIENT", "libelleAbrev": "CHRETIENOR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Imad El Kadi", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807431.json b/public/organe/PO807431.json new file mode 100644 index 0000000..1e0fde9 --- /dev/null +++ b/public/organe/PO807431.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807431", "codeType": "GA", "libelle": "France-Islande", "libelleEdition": "de France-Islande", "libelleAbrege": "Islande", "libelleAbrev": "ISL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Morgane Durier-Vandelle", "secretaire02": null}, "listePays": {"paysRef": "GOP756392"}}} \ No newline at end of file diff --git a/public/organe/PO807446.json b/public/organe/PO807446.json new file mode 100644 index 0000000..51a8807 --- /dev/null +++ b/public/organe/PO807446.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807446", "codeType": "GA", "libelle": "France-Erythr\u00e9e", "libelleEdition": "de France-Erythr\u00e9e", "libelleAbrege": "Erythr\u00e9e", "libelleAbrev": "ERY", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Anne-C\u00e9cile Blauwblomme-Delcroix", "secretaire02": null}, "listePays": {"paysRef": "GOP756508"}}} \ No newline at end of file diff --git a/public/organe/PO807451.json b/public/organe/PO807451.json new file mode 100644 index 0000000..95110ed --- /dev/null +++ b/public/organe/PO807451.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807451", "codeType": "GE", "libelle": "Commerce, artisanat et m\u00e9tiers d'art", "libelleEdition": "COMMERCE, ARTISANAT ET M\u00c9TIERS D'ART", "libelleAbrege": "COMMERCE, ARTISANAT ET M\u00c9TIERS D'ART", "libelleAbrev": "COMMERCE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thomas Wittwer", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807461.json b/public/organe/PO807461.json new file mode 100644 index 0000000..31509a4 --- /dev/null +++ b/public/organe/PO807461.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807461", "codeType": "GA", "libelle": "France-Isra\u00ebl", "libelleEdition": "de France-Isra\u00ebl", "libelleAbrege": "Isra\u00ebl", "libelleAbrev": "ISR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Solange Gombert", "secretaire02": null}, "listePays": {"paysRef": "GOP756447"}}} \ No newline at end of file diff --git a/public/organe/PO807466.json b/public/organe/PO807466.json new file mode 100644 index 0000000..cf3c144 --- /dev/null +++ b/public/organe/PO807466.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807466", "codeType": "GA", "libelle": "France-Guin\u00e9e-Bissao", "libelleEdition": "de France-Guin\u00e9e-Bissao", "libelleAbrege": "Guin\u00e9e-Bissao", "libelleAbrev": "GUINB", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Natacha Barcelo", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807476.json b/public/organe/PO807476.json new file mode 100644 index 0000000..7b0ac71 --- /dev/null +++ b/public/organe/PO807476.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807476", "codeType": "GA", "libelle": "France-Koweit", "libelleEdition": "de France-Koweit", "libelleAbrege": "Koweit", "libelleAbrev": "KOW", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pascal Marchain", "secretaire02": null}, "listePays": {"paysRef": "GOP756471"}}} \ No newline at end of file diff --git a/public/organe/PO807481.json b/public/organe/PO807481.json new file mode 100644 index 0000000..44aee18 --- /dev/null +++ b/public/organe/PO807481.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807481", "codeType": "GA", "libelle": "France-Vietnam", "libelleEdition": "de France-Vietnam", "libelleAbrege": "Vietnam", "libelleAbrev": "VIET", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Alice Lala", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807491.json b/public/organe/PO807491.json new file mode 100644 index 0000000..9275008 --- /dev/null +++ b/public/organe/PO807491.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807491", "codeType": "GA", "libelle": "France-Irlande", "libelleEdition": "de France-Irlande", "libelleAbrege": "Irlande", "libelleAbrev": "IRL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Beno\u00eet Bimbault", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807496.json b/public/organe/PO807496.json new file mode 100644 index 0000000..4a7bf30 --- /dev/null +++ b/public/organe/PO807496.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807496", "codeType": "GE", "libelle": "Thermalisme", "libelleEdition": "THERMALISME", "libelleAbrege": "THERMALISME", "libelleAbrev": "THERMALISM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Aur\u00e9lien Nicodeau", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807501.json b/public/organe/PO807501.json new file mode 100644 index 0000000..d614cb0 --- /dev/null +++ b/public/organe/PO807501.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807501", "codeType": "GE", "libelle": "Condition et bien-\u00eatre des animaux", "libelleEdition": "CONDITION ET BIEN-\u00caTRE DES ANIMAUX", "libelleAbrege": "CONDITION ET BIEN-\u00caTRE DES ANIMAUX", "libelleAbrev": "CONDANIMAL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme R\u00e9becca Goetghebeur-Terry", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807506.json b/public/organe/PO807506.json new file mode 100644 index 0000000..9047320 --- /dev/null +++ b/public/organe/PO807506.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807506", "codeType": "GA", "libelle": "France-Serbie", "libelleEdition": "de France-Serbie", "libelleAbrege": "Serbie", "libelleAbrev": "SER", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Emmanuelle Faure", "secretaire02": null}, "listePays": {"paysRef": "GOP756412"}}} \ No newline at end of file diff --git a/public/organe/PO807522.json b/public/organe/PO807522.json new file mode 100644 index 0000000..39e82c9 --- /dev/null +++ b/public/organe/PO807522.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807522", "codeType": "GA", "libelle": "France-Russie", "libelleEdition": "de France-Russie", "libelleAbrege": "Russie", "libelleAbrev": "RUS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bruno Legrain", "secretaire02": null}, "listePays": {"paysRef": "GOP756414"}}} \ No newline at end of file diff --git a/public/organe/PO807527.json b/public/organe/PO807527.json new file mode 100644 index 0000000..b79bc2f --- /dev/null +++ b/public/organe/PO807527.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807527", "codeType": "GA", "libelle": "France-Mozambique", "libelleEdition": "de France-Mozambique", "libelleAbrege": "Mozambique", "libelleAbrev": "MOZ", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Aline Baffalie", "secretaire02": null}, "listePays": {"paysRef": "GOP756546"}}} \ No newline at end of file diff --git a/public/organe/PO807537.json b/public/organe/PO807537.json new file mode 100644 index 0000000..865dd9b --- /dev/null +++ b/public/organe/PO807537.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807537", "codeType": "GEVI", "libelle": "Groupe d'\u00e9tudes \u00e0 vocation internationale France-Syrie", "libelleEdition": "de France-Groupe d'\u00e9tudes \u00e0 vocation internationale sur la Syrie", "libelleAbrege": "Syrie", "libelleAbrev": "SYR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bruno Legrain", "secretaire02": null}, "listePays": {"paysRef": "GOP756446"}}} \ No newline at end of file diff --git a/public/organe/PO807543.json b/public/organe/PO807543.json new file mode 100644 index 0000000..f01de43 --- /dev/null +++ b/public/organe/PO807543.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807543", "codeType": "GA", "libelle": "France-Monaco", "libelleEdition": "de France-Monaco", "libelleAbrege": "Monaco", "libelleAbrev": "MON", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Didier Eifermann", "secretaire02": null}, "listePays": {"paysRef": "GOP756432"}}} \ No newline at end of file diff --git a/public/organe/PO807548.json b/public/organe/PO807548.json new file mode 100644 index 0000000..ad386cb --- /dev/null +++ b/public/organe/PO807548.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807548", "codeType": "GE", "libelle": "Vie associative et b\u00e9n\u00e9volat", "libelleEdition": "VIE ASSOCIATIVE ET B\u00c9N\u00c9VOLAT", "libelleAbrege": "VIE ASSOCIATIVE ET B\u00c9N\u00c9VOLAT", "libelleAbrev": "VIEASSOCIA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thomas del Vecchio", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807553.json b/public/organe/PO807553.json new file mode 100644 index 0000000..4b2e749 --- /dev/null +++ b/public/organe/PO807553.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807553", "codeType": "GA", "libelle": "France-R\u00e9publique d\u00e9mocratique du Congo", "libelleEdition": "de France-R\u00e9publique d\u00e9mocratique du Congo", "libelleAbrege": "Congo (R\u00e9publique d\u00e9mocratique du)", "libelleAbrev": "RDC", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Jeanne Mazi\u00e8re", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807558.json b/public/organe/PO807558.json new file mode 100644 index 0000000..06e68e6 --- /dev/null +++ b/public/organe/PO807558.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807558", "codeType": "GE", "libelle": "Conditions d\u2019accueil des migrants et mineurs non accompagn\u00e9s", "libelleEdition": "CONDITIONS D\u2019ACCUEIL DES MIGRANTS ET MINEURS NON ACCOMPAGN\u00c9S", "libelleAbrege": "CONDITIONS D\u2019ACCUEIL DES MIGRANTS ET MINEURS NON ACCOMPAGN\u00c9S", "libelleAbrev": "ACCMIGRANT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Lucien Dalarun", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807563.json b/public/organe/PO807563.json new file mode 100644 index 0000000..8a539a4 --- /dev/null +++ b/public/organe/PO807563.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807563", "codeType": "GA", "libelle": "France-Slov\u00e9nie", "libelleEdition": "de France-Slov\u00e9nie", "libelleAbrege": "Slov\u00e9nie", "libelleAbrev": "SLOVE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bertrand Vial", "secretaire02": null}, "listePays": {"paysRef": "GOP756436"}}} \ No newline at end of file diff --git a/public/organe/PO807578.json b/public/organe/PO807578.json new file mode 100644 index 0000000..286a50e --- /dev/null +++ b/public/organe/PO807578.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807578", "codeType": "GA", "libelle": "France-Portugal", "libelleEdition": "de France-Portugal", "libelleAbrege": "Portugal", "libelleAbrev": "POR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Janaina Lucero", "secretaire02": null}, "listePays": {"paysRef": "GOP756433"}}} \ No newline at end of file diff --git a/public/organe/PO807588.json b/public/organe/PO807588.json new file mode 100644 index 0000000..07044f3 --- /dev/null +++ b/public/organe/PO807588.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807588", "codeType": "GA", "libelle": "France-Tunisie", "libelleEdition": "de France-Tunisie", "libelleAbrege": "Tunisie", "libelleAbrev": "TUN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Leyla Arslan", "secretaire02": null}, "listePays": {"paysRef": "GOP756540"}}} \ No newline at end of file diff --git a/public/organe/PO807598.json b/public/organe/PO807598.json new file mode 100644 index 0000000..a628420 --- /dev/null +++ b/public/organe/PO807598.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807598", "codeType": "GA", "libelle": "France-Jordanie", "libelleEdition": "de France-Jordanie", "libelleAbrege": "Jordanie", "libelleAbrev": "JOR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Pascale Rey-Pantz", "secretaire02": null}, "listePays": {"paysRef": "GOP756457"}}} \ No newline at end of file diff --git a/public/organe/PO807603.json b/public/organe/PO807603.json new file mode 100644 index 0000000..e773820 --- /dev/null +++ b/public/organe/PO807603.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807603", "codeType": "GE", "libelle": "Vigne, vin et \u0153nologie", "libelleEdition": "VIGNE, VIN ET \u0152NOLOGIE", "libelleAbrege": "VIGNE, VIN ET \u0152NOLOGIE", "libelleAbrev": "VIGNEVIN\u0152N", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Romain Tardy", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807608.json b/public/organe/PO807608.json new file mode 100644 index 0000000..54c8568 --- /dev/null +++ b/public/organe/PO807608.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807608", "codeType": "GA", "libelle": "France-Soudan du Sud", "libelleEdition": "de France-Soudan du Sud", "libelleAbrege": "Soudan du Sud", "libelleAbrev": "SSOUD", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "listePays": {"paysRef": "GOP756538"}}} \ No newline at end of file diff --git a/public/organe/PO807618.json b/public/organe/PO807618.json new file mode 100644 index 0000000..1e288ff --- /dev/null +++ b/public/organe/PO807618.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807618", "codeType": "GA", "libelle": "France-R\u00e9publique du Paraguay", "libelleEdition": "de France-R\u00e9publique du Paraguay", "libelleAbrege": "Paraguay", "libelleAbrev": "PAR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. David Boisbourdin", "secretaire02": null}, "listePays": {"paysRef": "GOP756572"}}} \ No newline at end of file diff --git a/public/organe/PO807623.json b/public/organe/PO807623.json new file mode 100644 index 0000000..017bc99 --- /dev/null +++ b/public/organe/PO807623.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807623", "codeType": "GE", "libelle": "Villes et banlieues", "libelleEdition": "VILLES ET BANLIEUES", "libelleAbrege": "VILLES ET BANLIEUES", "libelleAbrev": "VILLESBANL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Claire Poncet", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807628.json b/public/organe/PO807628.json new file mode 100644 index 0000000..2bd94f1 --- /dev/null +++ b/public/organe/PO807628.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807628", "codeType": "GA", "libelle": "France-Singapour", "libelleEdition": "de France-Singapour", "libelleAbrege": "Singapour", "libelleAbrev": "SING", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bertrand de Cordovez", "secretaire02": null}, "listePays": {"paysRef": "GOP756462"}}} \ No newline at end of file diff --git a/public/organe/PO807633.json b/public/organe/PO807633.json new file mode 100644 index 0000000..712c63d --- /dev/null +++ b/public/organe/PO807633.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807633", "codeType": "GA", "libelle": "France-R\u00e9publique dominicaine", "libelleEdition": "de France-R\u00e9publique dominicaine", "libelleAbrege": "Dominicaine (R\u00e9publique)", "libelleAbrev": "DOM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. David Boisbourdin", "secretaire02": null}, "listePays": {"paysRef": "GOP756559"}}} \ No newline at end of file diff --git a/public/organe/PO807638.json b/public/organe/PO807638.json new file mode 100644 index 0000000..872b492 --- /dev/null +++ b/public/organe/PO807638.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807638", "codeType": "GA", "libelle": "France-Comores", "libelleEdition": "de France-Comores", "libelleAbrege": "Comores", "libelleAbrev": "COM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre-Nicolas Guesdon", "secretaire02": null}, "listePays": {"paysRef": "GOP756550"}}} \ No newline at end of file diff --git a/public/organe/PO807643.json b/public/organe/PO807643.json new file mode 100644 index 0000000..0973d1e --- /dev/null +++ b/public/organe/PO807643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807643", "codeType": "GA", "libelle": "France-Ghana", "libelleEdition": "de France-Ghana", "libelleAbrege": "Ghana", "libelleAbrev": "GHA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Antoine Forcade", "secretaire02": null}, "listePays": {"paysRef": "GOP756518"}}} \ No newline at end of file diff --git a/public/organe/PO807648.json b/public/organe/PO807648.json new file mode 100644 index 0000000..46d612e --- /dev/null +++ b/public/organe/PO807648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807648", "codeType": "GA", "libelle": "France-Mauritanie", "libelleEdition": "de France-Mauritanie", "libelleAbrege": "Mauritanie", "libelleAbrev": "MAURIT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Solange Gombert", "secretaire02": null}, "listePays": {"paysRef": "GOP756525"}}} \ No newline at end of file diff --git a/public/organe/PO807653.json b/public/organe/PO807653.json new file mode 100644 index 0000000..55bf99f --- /dev/null +++ b/public/organe/PO807653.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807653", "codeType": "GE", "libelle": "Violences intrafamiliales", "libelleEdition": "VIOLENCES INTRAFAMILIALES", "libelleAbrege": "VIOLENCES INTRAFAMILIALES", "libelleAbrev": "VIOLENFAM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Antoine Le Vavasseur", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807658.json b/public/organe/PO807658.json new file mode 100644 index 0000000..474fe53 --- /dev/null +++ b/public/organe/PO807658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807658", "codeType": "GA", "libelle": "France-Su\u00e8de", "libelleEdition": "de France-Su\u00e8de", "libelleAbrege": "Su\u00e8de", "libelleAbrev": "SUE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. L\u00e9o Andr\u00e9", "secretaire02": null}, "listePays": {"paysRef": "GOP756396"}}} \ No newline at end of file diff --git a/public/organe/PO807673.json b/public/organe/PO807673.json new file mode 100644 index 0000000..69f0423 --- /dev/null +++ b/public/organe/PO807673.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807673", "codeType": "GEVI", "libelle": "Groupe d'\u00e9tudes \u00e0 vocation internationale France-Palestine", "libelleEdition": "de Groupe d'\u00e9tudes \u00e0 vocation internationale France-Palestine", "libelleAbrege": "Palestine", "libelleAbrev": "PAL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Samy Imourra", "secretaire02": null}, "listePays": {"paysRef": "GOP756490"}}} \ No newline at end of file diff --git a/public/organe/PO807678.json b/public/organe/PO807678.json new file mode 100644 index 0000000..f94fffc --- /dev/null +++ b/public/organe/PO807678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807678", "codeType": "GA", "libelle": "France-Indon\u00e9sie", "libelleEdition": "de France-Indon\u00e9sie", "libelleAbrege": "Indon\u00e9sie", "libelleAbrev": "INDO", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Emilien Ricardo", "secretaire02": null}, "listePays": {"paysRef": "GOP756465"}}} \ No newline at end of file diff --git a/public/organe/PO807683.json b/public/organe/PO807683.json new file mode 100644 index 0000000..25eb875 --- /dev/null +++ b/public/organe/PO807683.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807683", "codeType": "GA", "libelle": "France-Arabie Saoudite", "libelleEdition": "de France-Arabie Saoudite", "libelleAbrege": "Arabie Saoudite", "libelleAbrev": "SAOU", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Alice Gondard", "secretaire02": null}, "listePays": {"paysRef": "GOP756442"}}} \ No newline at end of file diff --git a/public/organe/PO807688.json b/public/organe/PO807688.json new file mode 100644 index 0000000..e2d817f --- /dev/null +++ b/public/organe/PO807688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807688", "codeType": "GA", "libelle": "France-Estonie", "libelleEdition": "de France-Estonie", "libelleAbrege": "Estonie", "libelleAbrev": "EST", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Camille Thomas-Ortel", "secretaire02": null}, "listePays": {"paysRef": "GOP756398"}}} \ No newline at end of file diff --git a/public/organe/PO807693.json b/public/organe/PO807693.json new file mode 100644 index 0000000..66706cf --- /dev/null +++ b/public/organe/PO807693.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807693", "codeType": "GA", "libelle": "France-Birmanie", "libelleEdition": "de France-Birmanie", "libelleAbrege": "Birmanie", "libelleAbrev": "BIR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thierry Deilhes", "secretaire02": null}, "listePays": {"paysRef": "GOP756460"}}} \ No newline at end of file diff --git a/public/organe/PO807698.json b/public/organe/PO807698.json new file mode 100644 index 0000000..da20a64 --- /dev/null +++ b/public/organe/PO807698.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807698", "codeType": "GA", "libelle": "France-Argentine", "libelleEdition": "de France-Argentine", "libelleAbrege": "Argentine", "libelleAbrev": "ARG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Serge Ezdra", "secretaire02": null}, "listePays": {"paysRef": "GOP756566"}}} \ No newline at end of file diff --git a/public/organe/PO807703.json b/public/organe/PO807703.json new file mode 100644 index 0000000..b0ad635 --- /dev/null +++ b/public/organe/PO807703.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807703", "codeType": "GE", "libelle": "Discriminations et LGBTQI-phobies", "libelleEdition": "DISCRIMINATIONS ET LGBTQI-PHOBIES", "libelleAbrege": "DISCRIMINATIONS ET LGBTQI-PHOBIES", "libelleAbrev": "DISCLGBTPH", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Axel Maybon", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807708.json b/public/organe/PO807708.json new file mode 100644 index 0000000..e0673d6 --- /dev/null +++ b/public/organe/PO807708.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807708", "codeType": "GA", "libelle": "France-Alg\u00e9rie", "libelleEdition": "de France-Alg\u00e9rie", "libelleAbrege": "Alg\u00e9rie", "libelleAbrev": "ALG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Fran\u00e7ois-Xavier Carabelli", "secretaire02": null}, "listePays": {"paysRef": "GOP756541"}}} \ No newline at end of file diff --git a/public/organe/PO807718.json b/public/organe/PO807718.json new file mode 100644 index 0000000..18c9c0d --- /dev/null +++ b/public/organe/PO807718.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807718", "codeType": "GA", "libelle": "France-Uruguay", "libelleEdition": "de France-Uruguay", "libelleAbrege": "Uruguay", "libelleAbrev": "URUG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme In\u00e8s Fauconnier", "secretaire02": null}, "listePays": {"paysRef": "GOP756574"}}} \ No newline at end of file diff --git a/public/organe/PO807723.json b/public/organe/PO807723.json new file mode 100644 index 0000000..9278703 --- /dev/null +++ b/public/organe/PO807723.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807723", "codeType": "GA", "libelle": "France-Mali", "libelleEdition": "de France-Mali", "libelleAbrege": "Mali", "libelleAbrev": "MALI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Florian Augas", "secretaire02": null}, "listePays": {"paysRef": "GOP756524"}}} \ No newline at end of file diff --git a/public/organe/PO807728.json b/public/organe/PO807728.json new file mode 100644 index 0000000..b670c13 --- /dev/null +++ b/public/organe/PO807728.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807728", "codeType": "GE", "libelle": "Eau et biodiversit\u00e9", "libelleEdition": "EAU ET BIODIVERSIT\u00c9", "libelleAbrege": "EAU ET BIODIVERSIT\u00c9", "libelleAbrev": "EAUBIODIV", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Mohamed Sadoun", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807733.json b/public/organe/PO807733.json new file mode 100644 index 0000000..912614d --- /dev/null +++ b/public/organe/PO807733.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807733", "codeType": "GA", "libelle": "France-Cambodge", "libelleEdition": "de France-Cambodge", "libelleAbrege": "Cambodge", "libelleAbrev": "CAMB", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre-Nicolas Guesdon", "secretaire02": null}, "listePays": {"paysRef": "GOP756466"}}} \ No newline at end of file diff --git a/public/organe/PO807738.json b/public/organe/PO807738.json new file mode 100644 index 0000000..5764454 --- /dev/null +++ b/public/organe/PO807738.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807738", "codeType": "GA", "libelle": "France-Afrique du Sud", "libelleEdition": "de France-Afrique du Sud", "libelleAbrege": "Afrique du Sud", "libelleAbrev": "AFS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Camille Thomas-Ortel", "secretaire02": null}, "listePays": {"paysRef": "GOP756494"}}} \ No newline at end of file diff --git a/public/organe/PO807744.json b/public/organe/PO807744.json new file mode 100644 index 0000000..e94c6d1 --- /dev/null +++ b/public/organe/PO807744.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807744", "codeType": "GA", "libelle": "France-Kazakhstan", "libelleEdition": "de France-Kazakhstan", "libelleAbrege": "Kazakhstan", "libelleAbrev": "KAZ", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre-Michel Berillon", "secretaire02": null}, "listePays": {"paysRef": "GOP756485"}}} \ No newline at end of file diff --git a/public/organe/PO807749.json b/public/organe/PO807749.json new file mode 100644 index 0000000..c4babc5 --- /dev/null +++ b/public/organe/PO807749.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807749", "codeType": "GA", "libelle": "France-Kosovo", "libelleEdition": "de Kosovo", "libelleAbrege": "Kosovo", "libelleAbrev": "KOS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Julien Bodin", "secretaire02": null}, "listePays": {"paysRef": "GOP756441"}}} \ No newline at end of file diff --git a/public/organe/PO807755.json b/public/organe/PO807755.json new file mode 100644 index 0000000..7e55e5b --- /dev/null +++ b/public/organe/PO807755.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807755", "codeType": "GA", "libelle": "France-Mongolie", "libelleEdition": "de France-Mongolie", "libelleAbrege": "Mongolie", "libelleAbrev": "MONG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Rapha\u00ebl Page", "secretaire02": null}, "listePays": {"paysRef": "GOP756473"}}} \ No newline at end of file diff --git a/public/organe/PO807770.json b/public/organe/PO807770.json new file mode 100644 index 0000000..2e03227 --- /dev/null +++ b/public/organe/PO807770.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807770", "codeType": "GA", "libelle": "France-Nouvelle-Z\u00e9lande", "libelleEdition": "de France-Nouvelle-Z\u00e9lande", "libelleAbrege": "Nouvelle-Z\u00e9lande", "libelleAbrev": "NZ", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Morgane Durier-Vandelle", "secretaire02": null}, "listePays": {"paysRef": "GOP756614"}}} \ No newline at end of file diff --git a/public/organe/PO807780.json b/public/organe/PO807780.json new file mode 100644 index 0000000..23c850f --- /dev/null +++ b/public/organe/PO807780.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807780", "codeType": "GA", "libelle": "France-P\u00e9rou", "libelleEdition": "de France-P\u00e9rou", "libelleAbrege": "P\u00e9rou", "libelleAbrev": "PER", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Blandine Le Gall", "secretaire02": null}, "listePays": {"paysRef": "GOP756573"}}} \ No newline at end of file diff --git a/public/organe/PO807785.json b/public/organe/PO807785.json new file mode 100644 index 0000000..00521e9 --- /dev/null +++ b/public/organe/PO807785.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807785", "codeType": "GA", "libelle": "France-Cameroun", "libelleEdition": "de France-Cameroun", "libelleAbrege": "Cameroun", "libelleAbrev": "CAM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pascal Marchain", "secretaire02": null}, "listePays": {"paysRef": "GOP756512"}}} \ No newline at end of file diff --git a/public/organe/PO807790.json b/public/organe/PO807790.json new file mode 100644 index 0000000..5c8b2e5 --- /dev/null +++ b/public/organe/PO807790.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807790", "codeType": "GEVI", "libelle": "Groupe d'\u00e9tudes \u00e0 vocation internationale sur la Libye", "libelleEdition": "de Groupe d'\u00e9tudes \u00e0 vocation internationale sur la Libye", "libelleAbrege": "Libye", "libelleAbrev": "LIBY", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Natacha Barcelo", "secretaire02": null}, "listePays": {"paysRef": "GOP756507"}}} \ No newline at end of file diff --git a/public/organe/PO807795.json b/public/organe/PO807795.json new file mode 100644 index 0000000..9c755d2 --- /dev/null +++ b/public/organe/PO807795.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807795", "codeType": "GA", "libelle": "France-Arm\u00e9nie", "libelleEdition": "de France-Arm\u00e9nie", "libelleAbrege": "Arm\u00e9nie", "libelleAbrev": "ARM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Anne Bailleul", "secretaire02": null}, "listePays": {"paysRef": "GOP756481"}}} \ No newline at end of file diff --git a/public/organe/PO807800.json b/public/organe/PO807800.json new file mode 100644 index 0000000..4afe123 --- /dev/null +++ b/public/organe/PO807800.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807800", "codeType": "GA", "libelle": "France-Nig\u00e9ria", "libelleEdition": "de France-Nig\u00e9ria", "libelleAbrege": "Nigeria", "libelleAbrev": "NGRA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Mohamed Sadoun", "secretaire02": null}, "listePays": {"paysRef": "GOP756527"}}} \ No newline at end of file diff --git a/public/organe/PO807815.json b/public/organe/PO807815.json new file mode 100644 index 0000000..0605ac9 --- /dev/null +++ b/public/organe/PO807815.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807815", "codeType": "GA", "libelle": "France-Congo", "libelleEdition": "de France-Congo", "libelleAbrege": "Congo (R\u00e9publique du)", "libelleAbrev": "CONG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Benjamin Quashie-Roubaud", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807820.json b/public/organe/PO807820.json new file mode 100644 index 0000000..48f414f --- /dev/null +++ b/public/organe/PO807820.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807820", "codeType": "GE", "libelle": "\u00c9conomie sociale et solidaire et responsabilit\u00e9 soci\u00e9tale des entreprises", "libelleEdition": "\u00c9CONOMIE SOCIALE ET SOLIDAIRE ET RESPONSABILIT\u00c9 SOCI\u00c9TALE DES ENTREPRISES", "libelleAbrege": "\u00c9CONOMIE SOCIALE ET SOLIDAIRE ET RESPONSABILIT\u00c9 SOCI\u00c9TALE DES ENTREPRISES", "libelleAbrev": "ECOSOCIAL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bastien L'Henoret", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807825.json b/public/organe/PO807825.json new file mode 100644 index 0000000..e166570 --- /dev/null +++ b/public/organe/PO807825.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807825", "codeType": "GA", "libelle": "France-Bahrein", "libelleEdition": "de France-Bahrein", "libelleAbrege": "Bahrein", "libelleAbrev": "BAH", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pascal Marchain", "secretaire02": null}, "listePays": {"paysRef": "GOP756478"}}} \ No newline at end of file diff --git a/public/organe/PO807830.json b/public/organe/PO807830.json new file mode 100644 index 0000000..5c2b225 --- /dev/null +++ b/public/organe/PO807830.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807830", "codeType": "GE", "libelle": "Air et sant\u00e9", "libelleEdition": "AIR ET SANT\u00c9", "libelleAbrege": "AIR ET SANT\u00c9", "libelleAbrev": "AIRETSANTE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Zo\u00e9 G\u00e9lin", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807835.json b/public/organe/PO807835.json new file mode 100644 index 0000000..f98cc82 --- /dev/null +++ b/public/organe/PO807835.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807835", "codeType": "GA", "libelle": "France-Maurice", "libelleEdition": "de France-Maurice", "libelleAbrege": "Maurice", "libelleAbrev": "MAUR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Anne-C\u00e9cile Blauwblomme-Delcroix", "secretaire02": null}, "listePays": {"paysRef": "GOP756543"}}} \ No newline at end of file diff --git a/public/organe/PO807840.json b/public/organe/PO807840.json new file mode 100644 index 0000000..19a3147 --- /dev/null +++ b/public/organe/PO807840.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807840", "codeType": "GA", "libelle": "France-Afghanistan", "libelleEdition": "de France-Afghanistan", "libelleAbrege": "Afghanistan", "libelleAbrev": "AFG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Leyla Arslan", "secretaire02": null}, "listePays": {"paysRef": "GOP756449"}}} \ No newline at end of file diff --git a/public/organe/PO807846.json b/public/organe/PO807846.json new file mode 100644 index 0000000..6d6a09d --- /dev/null +++ b/public/organe/PO807846.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807846", "codeType": "GA", "libelle": "France-Cuba", "libelleEdition": "de France-Cuba", "libelleAbrege": "Cuba", "libelleAbrev": "CUBA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Alix de Roubin", "secretaire02": null}, "listePays": {"paysRef": "GOP756558"}}} \ No newline at end of file diff --git a/public/organe/PO807856.json b/public/organe/PO807856.json new file mode 100644 index 0000000..b141c11 --- /dev/null +++ b/public/organe/PO807856.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807856", "codeType": "GA", "libelle": "France-Andorre", "libelleEdition": "de France-Andorre", "libelleAbrege": "Andorre", "libelleAbrev": "AND", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Julien Souplet", "secretaire02": null}, "listePays": {"paysRef": "GOP756420"}}} \ No newline at end of file diff --git a/public/organe/PO807866.json b/public/organe/PO807866.json new file mode 100644 index 0000000..49ec7f4 --- /dev/null +++ b/public/organe/PO807866.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807866", "codeType": "GA", "libelle": "France-Irak", "libelleEdition": "de France-Irak", "libelleAbrege": "Irak", "libelleAbrev": "IRAK", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bruno Legrain", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807876.json b/public/organe/PO807876.json new file mode 100644 index 0000000..284bee0 --- /dev/null +++ b/public/organe/PO807876.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807876", "codeType": "GA", "libelle": "France-Egypte", "libelleEdition": "de France-Egypte", "libelleAbrege": "Egypte", "libelleAbrev": "EGY", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Solange Gombert", "secretaire02": null}, "listePays": {"paysRef": "GOP756492"}}} \ No newline at end of file diff --git a/public/organe/PO807881.json b/public/organe/PO807881.json new file mode 100644 index 0000000..42ce83d --- /dev/null +++ b/public/organe/PO807881.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807881", "codeType": "GA", "libelle": "France-N\u00e9pal", "libelleEdition": "de France-N\u00e9pal", "libelleAbrege": "N\u00e9pal", "libelleAbrev": "NEP", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Apolline Nguyen-Khac", "secretaire02": null}, "listePays": {"paysRef": "GOP756452"}}} \ No newline at end of file diff --git a/public/organe/PO807886.json b/public/organe/PO807886.json new file mode 100644 index 0000000..2f89df6 --- /dev/null +++ b/public/organe/PO807886.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO807886", "codeType": "GE", "libelle": "Gastronomie, m\u00e9tiers de bouche et arts de la table", "libelleEdition": "GASTRONOMIE, M\u00c9TIERS DE BOUCHE ET ARTS DE LA TABLE", "libelleAbrege": "GASTRONOMIE, M\u00c9TIERS DE BOUCHE ET ARTS DE LA TABLE", "libelleAbrev": "GASTRONOMI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Rosalina Arbulu Norabuena", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO807891.json b/public/organe/PO807891.json new file mode 100644 index 0000000..1c07760 --- /dev/null +++ b/public/organe/PO807891.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807891", "codeType": "GA", "libelle": "France-Somalie", "libelleEdition": "de France-Somalie", "libelleAbrege": "Somalie", "libelleAbrev": "SOM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Natacha Barcelo", "secretaire02": null}, "listePays": {"paysRef": "GOP756509"}}} \ No newline at end of file diff --git a/public/organe/PO807901.json b/public/organe/PO807901.json new file mode 100644 index 0000000..1673413 --- /dev/null +++ b/public/organe/PO807901.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807901", "codeType": "GA", "libelle": "France-Bulgarie", "libelleEdition": "de France-Bulgarie", "libelleAbrege": "Bulgarie", "libelleAbrev": "BULG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thierry Deilhes", "secretaire02": null}, "listePays": {"paysRef": "GOP756403"}}} \ No newline at end of file diff --git a/public/organe/PO807911.json b/public/organe/PO807911.json new file mode 100644 index 0000000..9b21fa1 --- /dev/null +++ b/public/organe/PO807911.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807911", "codeType": "GA", "libelle": "France-Mac\u00e9doine du Nord", "libelleEdition": "de France-Mac\u00e9doine du Nord", "libelleAbrege": "Mac\u00e9doine du Nord", "libelleAbrev": "MAC", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Jason Graindepice", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807926.json b/public/organe/PO807926.json new file mode 100644 index 0000000..e1a70ae --- /dev/null +++ b/public/organe/PO807926.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807926", "codeType": "GA", "libelle": "France-S\u00e9n\u00e9gal", "libelleEdition": "de France-S\u00e9n\u00e9gal", "libelleAbrege": "S\u00e9n\u00e9gal", "libelleAbrev": "SEN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Aliz\u00e9e Trillo", "secretaire02": null}, "listePays": {"paysRef": "GOP756530"}}} \ No newline at end of file diff --git a/public/organe/PO807931.json b/public/organe/PO807931.json new file mode 100644 index 0000000..a1f0c91 --- /dev/null +++ b/public/organe/PO807931.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807931", "codeType": "GA", "libelle": "France-Etats-Unis", "libelleEdition": "de France-Etats-Unis", "libelleAbrege": "Etats-Unis", "libelleAbrev": "USA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre-Andr\u00e9 Cl\u00e9ment", "secretaire02": null}, "listePays": {"paysRef": "GOP756555"}}} \ No newline at end of file diff --git a/public/organe/PO807936.json b/public/organe/PO807936.json new file mode 100644 index 0000000..9538428 --- /dev/null +++ b/public/organe/PO807936.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807936", "codeType": "GA", "libelle": "France-G\u00e9orgie", "libelleEdition": "de France-G\u00e9orgie", "libelleAbrege": "G\u00e9orgie", "libelleAbrev": "GEOR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. William Bertrand", "secretaire02": null}, "listePays": {"paysRef": "GOP756484"}}} \ No newline at end of file diff --git a/public/organe/PO807946.json b/public/organe/PO807946.json new file mode 100644 index 0000000..66a24b9 --- /dev/null +++ b/public/organe/PO807946.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807946", "codeType": "GA", "libelle": "France-Hongrie", "libelleEdition": "de France-Hongrie", "libelleAbrege": "Hongrie", "libelleAbrev": "HONG", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Julien Barbot", "secretaire02": null}, "listePays": {"paysRef": "GOP756404"}}} \ No newline at end of file diff --git a/public/organe/PO807956.json b/public/organe/PO807956.json new file mode 100644 index 0000000..9010e59 --- /dev/null +++ b/public/organe/PO807956.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807956", "codeType": "GA", "libelle": "France-Lettonie", "libelleEdition": "de France-Lettonie", "libelleAbrege": "Lettonie", "libelleAbrev": "LET", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Roland Beaume", "secretaire02": null}, "listePays": {"paysRef": "GOP756399"}}} \ No newline at end of file diff --git a/public/organe/PO807961.json b/public/organe/PO807961.json new file mode 100644 index 0000000..eba8ec8 --- /dev/null +++ b/public/organe/PO807961.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807961", "codeType": "GEVI", "libelle": "Groupe d'\u00e9tudes \u00e0 vocation internationale sur les questions de la R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e (Cor\u00e9e du Nord )", "libelleEdition": "de France-Groupe d'\u00e9tudes \u00e0 vocation internationale sur les questions de la R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e (Cor\u00e9e du Nord )", "libelleAbrege": "Cor\u00e9e du Nord", "libelleAbrev": "NK", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Antoine Lenormand", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807971.json b/public/organe/PO807971.json new file mode 100644 index 0000000..dfecae5 --- /dev/null +++ b/public/organe/PO807971.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807971", "codeType": "GA", "libelle": "France-Gabon", "libelleEdition": "de France-Gabon", "libelleAbrege": "Gabon", "libelleAbrev": "GAB", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bernard Le Drezen", "secretaire02": null}, "listePays": {"paysRef": "GOP756517"}}} \ No newline at end of file diff --git a/public/organe/PO807981.json b/public/organe/PO807981.json new file mode 100644 index 0000000..cbaeec1 --- /dev/null +++ b/public/organe/PO807981.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807981", "codeType": "GA", "libelle": "France-Royaume-Uni de Grande-Bretagne et d'Irlande du Nord", "libelleEdition": "de France-Royaume-Uni de Grande-Bretagne et d'Irlande du Nord", "libelleAbrege": "Royaume-Uni de Grande-Bretagne et d'Irlande du Nord", "libelleAbrev": "GB", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Ana\u00efs Polycarpe", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO807991.json b/public/organe/PO807991.json new file mode 100644 index 0000000..65beb6b --- /dev/null +++ b/public/organe/PO807991.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO807991", "codeType": "GA", "libelle": "France-Italie", "libelleEdition": "de France-Italie", "libelleAbrege": "Italie", "libelleAbrev": "IT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Val\u00e9rie Checketts", "secretaire02": null}, "listePays": {"paysRef": "GOP756417"}}} \ No newline at end of file diff --git a/public/organe/PO808006.json b/public/organe/PO808006.json new file mode 100644 index 0000000..e308efe --- /dev/null +++ b/public/organe/PO808006.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808006", "codeType": "GA", "libelle": "France-Suriname", "libelleEdition": "de France-Suriname", "libelleAbrege": "Suriname", "libelleAbrev": "SUR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Hakima Dahi", "secretaire02": null}, "listePays": {"paysRef": "GOP756597"}}} \ No newline at end of file diff --git a/public/organe/PO808011.json b/public/organe/PO808011.json new file mode 100644 index 0000000..8395326 --- /dev/null +++ b/public/organe/PO808011.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808011", "codeType": "GE", "libelle": "Spectacle vivant", "libelleEdition": "Spectacle vivant", "libelleAbrege": "SPECTACLE VIVANT", "libelleAbrev": "SPECVIVANT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Anne-Laure Meyer", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808016.json b/public/organe/PO808016.json new file mode 100644 index 0000000..55996d0 --- /dev/null +++ b/public/organe/PO808016.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808016", "codeType": "GA", "libelle": "France-Pologne", "libelleEdition": "de France-Pologne", "libelleAbrege": "Pologne", "libelleAbrev": "PL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Florian Augas", "secretaire02": null}, "listePays": {"paysRef": "GOP756413"}}} \ No newline at end of file diff --git a/public/organe/PO808021.json b/public/organe/PO808021.json new file mode 100644 index 0000000..2f9d24d --- /dev/null +++ b/public/organe/PO808021.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808021", "codeType": "GA", "libelle": "France-Ethiopie", "libelleEdition": "de France-Ethiopie", "libelleAbrege": "Ethiopie", "libelleAbrev": "ETH", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Pascale Rey-Pantz", "secretaire02": null}, "listePays": {"paysRef": "GOP756506"}}} \ No newline at end of file diff --git a/public/organe/PO808026.json b/public/organe/PO808026.json new file mode 100644 index 0000000..77d5d30 --- /dev/null +++ b/public/organe/PO808026.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808026", "codeType": "GA", "libelle": "France-Ha\u00efti", "libelleEdition": "de France-Ha\u00efti", "libelleAbrege": "Ha\u00efti", "libelleAbrev": "HAI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. \u00c9ric Fournier", "secretaire02": null}, "listePays": {"paysRef": "GOP756561"}}} \ No newline at end of file diff --git a/public/organe/PO808031.json b/public/organe/PO808031.json new file mode 100644 index 0000000..6bae499 --- /dev/null +++ b/public/organe/PO808031.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808031", "codeType": "GE", "libelle": "Enseignement priv\u00e9", "libelleEdition": "ENSEIGNEMENT PRIV\u00c9", "libelleAbrege": "ENSEIGNEMENT PRIV\u00c9", "libelleAbrev": "ENSEIPRIVE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Matthieu de Vallavieille", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808036.json b/public/organe/PO808036.json new file mode 100644 index 0000000..027b50f --- /dev/null +++ b/public/organe/PO808036.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808036", "codeType": "GA", "libelle": "France-Colombie", "libelleEdition": "de France-Colombie", "libelleAbrege": "Colombie", "libelleAbrev": "COL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Janaina Lucero", "secretaire02": null}, "listePays": {"paysRef": "GOP756570"}}} \ No newline at end of file diff --git a/public/organe/PO808046.json b/public/organe/PO808046.json new file mode 100644 index 0000000..fea178d --- /dev/null +++ b/public/organe/PO808046.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808046", "codeType": "GA", "libelle": "France-Br\u00e9sil", "libelleEdition": "de France-Br\u00e9sil", "libelleAbrege": "Br\u00e9sil", "libelleAbrev": "BRES", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Tiennot Sciberras", "secretaire02": null}, "listePays": {"paysRef": "GOP756567"}}} \ No newline at end of file diff --git a/public/organe/PO808051.json b/public/organe/PO808051.json new file mode 100644 index 0000000..76d3719 --- /dev/null +++ b/public/organe/PO808051.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808051", "codeType": "GA", "libelle": "France-Moldavie", "libelleEdition": "de France-Moldavie", "libelleAbrege": "Moldavie", "libelleAbrev": "MOL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Philippe Beaucamp", "secretaire02": null}, "listePays": {"paysRef": "GOP756438"}}} \ No newline at end of file diff --git a/public/organe/PO808061.json b/public/organe/PO808061.json new file mode 100644 index 0000000..1c0d94b --- /dev/null +++ b/public/organe/PO808061.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808061", "codeType": "GA", "libelle": "France-Qu\u00e9bec", "libelleEdition": "de France-Qu\u00e9bec", "libelleAbrege": "Qu\u00e9bec", "libelleAbrev": "QUE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Antoine Papalia", "secretaire02": null}, "listePays": {"paysRef": "GOP759827"}}} \ No newline at end of file diff --git a/public/organe/PO808066.json b/public/organe/PO808066.json new file mode 100644 index 0000000..5865135 --- /dev/null +++ b/public/organe/PO808066.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808066", "codeType": "GA", "libelle": "France-Croatie", "libelleEdition": "de France-Croatie", "libelleAbrege": "Croatie", "libelleAbrev": "CRO", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. David Malet", "secretaire02": null}, "listePays": {"paysRef": "GOP756410"}}} \ No newline at end of file diff --git a/public/organe/PO808071.json b/public/organe/PO808071.json new file mode 100644 index 0000000..a2ea368 --- /dev/null +++ b/public/organe/PO808071.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808071", "codeType": "GA", "libelle": "France-Philippines", "libelleEdition": "de France-Philippines", "libelleAbrege": "Philippines", "libelleAbrev": "PHI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre Zwickert", "secretaire02": null}, "listePays": {"paysRef": "GOP756456"}}} \ No newline at end of file diff --git a/public/organe/PO808076.json b/public/organe/PO808076.json new file mode 100644 index 0000000..ebbc5c1 --- /dev/null +++ b/public/organe/PO808076.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808076", "codeType": "GE", "libelle": "Fili\u00e8re brassicole", "libelleEdition": "FILI\u00c8RE BRASSICOLE", "libelleAbrege": "FILI\u00c8RE BRASSICOLE", "libelleAbrev": "FILBRASSI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Lucas Fournier", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808081.json b/public/organe/PO808081.json new file mode 100644 index 0000000..92d8f51 --- /dev/null +++ b/public/organe/PO808081.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808081", "codeType": "GA", "libelle": "France-Danemark", "libelleEdition": "de France-Danemark", "libelleAbrege": "Danemark", "libelleAbrev": "DAN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Olivia Sanson", "secretaire02": null}, "listePays": {"paysRef": "GOP756391"}}} \ No newline at end of file diff --git a/public/organe/PO808086.json b/public/organe/PO808086.json new file mode 100644 index 0000000..149d892 --- /dev/null +++ b/public/organe/PO808086.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808086", "codeType": "GE", "libelle": "Fin de vie", "libelleEdition": "FIN DE VIE", "libelleAbrege": "FIN DE VIE", "libelleAbrev": "FINDEVIE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Camille Thomas-Ortel", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808091.json b/public/organe/PO808091.json new file mode 100644 index 0000000..29780ce --- /dev/null +++ b/public/organe/PO808091.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808091", "codeType": "GA", "libelle": "France-Pakistan", "libelleEdition": "de France-Pakistan", "libelleAbrege": "Pakistan", "libelleAbrev": "PAK", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Adrien Laurent", "secretaire02": null}, "listePays": {"paysRef": "GOP756450"}}} \ No newline at end of file diff --git a/public/organe/PO808101.json b/public/organe/PO808101.json new file mode 100644 index 0000000..355ae26 --- /dev/null +++ b/public/organe/PO808101.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808101", "codeType": "GA", "libelle": "France-Liberia", "libelleEdition": "de France-Liberia", "libelleAbrege": "Liberia", "libelleAbrev": "LIBE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}, "listePays": {"paysRef": "GOP756493"}}} \ No newline at end of file diff --git a/public/organe/PO808106.json b/public/organe/PO808106.json new file mode 100644 index 0000000..20063bc --- /dev/null +++ b/public/organe/PO808106.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808106", "codeType": "GEVI", "libelle": "Groupe d'\u00e9tudes \u00e0 vocation internationale sur les Iles du Pacifique", "libelleEdition": null, "libelleAbrege": "Iles du Pacifique", "libelleAbrev": "IP", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thierry Deilhes", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO808111.json b/public/organe/PO808111.json new file mode 100644 index 0000000..6f46ef6 --- /dev/null +++ b/public/organe/PO808111.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808111", "codeType": "GA", "libelle": "France-Allemagne", "libelleEdition": "de France-Allemagne", "libelleAbrege": "Allemagne", "libelleAbrev": "ALL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Claire Gloaguen", "secretaire02": null}, "listePays": {"paysRef": "GOP756401"}}} \ No newline at end of file diff --git a/public/organe/PO808116.json b/public/organe/PO808116.json new file mode 100644 index 0000000..419f3a0 --- /dev/null +++ b/public/organe/PO808116.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808116", "codeType": "GA", "libelle": "France-Djibouti", "libelleEdition": "de France-Djibouti", "libelleAbrege": "Djibouti", "libelleAbrev": "DJI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre-Nicolas Guesdon", "secretaire02": null}, "listePays": {"paysRef": "GOP756552"}}} \ No newline at end of file diff --git a/public/organe/PO808121.json b/public/organe/PO808121.json new file mode 100644 index 0000000..735d88f --- /dev/null +++ b/public/organe/PO808121.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808121", "codeType": "GA", "libelle": "France-Espagne", "libelleEdition": "de France-Espagne", "libelleAbrege": "Espagne", "libelleAbrev": "ESP", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. J\u00e9r\u00e9my Calohard", "secretaire02": null}, "listePays": {"paysRef": "GOP756427"}}} \ No newline at end of file diff --git a/public/organe/PO808126.json b/public/organe/PO808126.json new file mode 100644 index 0000000..21b2520 --- /dev/null +++ b/public/organe/PO808126.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808126", "codeType": "GA", "libelle": "France-Seychelles", "libelleEdition": "de France-Seychelles", "libelleAbrege": "Seychelles", "libelleAbrev": "SEY", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Patricia Antoine", "secretaire02": null}, "listePays": {"paysRef": "GOP756551"}}} \ No newline at end of file diff --git a/public/organe/PO808131.json b/public/organe/PO808131.json new file mode 100644 index 0000000..f2e5da8 --- /dev/null +++ b/public/organe/PO808131.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808131", "codeType": "GA", "libelle": "France-Chine", "libelleEdition": "de France-Chine", "libelleAbrege": "Chine", "libelleAbrev": "CHIN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Adrien Laurent", "secretaire02": null}, "listePays": {"paysRef": "GOP756453"}}} \ No newline at end of file diff --git a/public/organe/PO808136.json b/public/organe/PO808136.json new file mode 100644 index 0000000..f757fd0 --- /dev/null +++ b/public/organe/PO808136.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808136", "codeType": "GA", "libelle": "France-Tch\u00e8que (R\u00e9publique)", "libelleEdition": "de France-Tch\u00e8que (R\u00e9publique)", "libelleAbrege": "Tch\u00e8que (R\u00e9publique)", "libelleAbrev": "TCHE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Charles Boriaud", "secretaire02": null}, "listePays": {"paysRef": "GOP756407"}}} \ No newline at end of file diff --git a/public/organe/PO808141.json b/public/organe/PO808141.json new file mode 100644 index 0000000..5aed0b0 --- /dev/null +++ b/public/organe/PO808141.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808141", "codeType": "GE", "libelle": "For\u00eat et fili\u00e8re bois", "libelleEdition": "FOR\u00caT ET FILI\u00c8RE BOIS", "libelleAbrege": "FOR\u00caT ET FILI\u00c8RE BOIS", "libelleAbrev": "FORETBOIS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Olivia Sanson", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808146.json b/public/organe/PO808146.json new file mode 100644 index 0000000..5bfed4e --- /dev/null +++ b/public/organe/PO808146.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808146", "codeType": "GA", "libelle": "France-Inde", "libelleEdition": "de France-Inde", "libelleAbrege": "Inde", "libelleAbrev": "IND", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Ren\u00e9 Carl\u00e9", "secretaire02": null}, "listePays": {"paysRef": "GOP756459"}}} \ No newline at end of file diff --git a/public/organe/PO808151.json b/public/organe/PO808151.json new file mode 100644 index 0000000..84ae0c3 --- /dev/null +++ b/public/organe/PO808151.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808151", "codeType": "GE", "libelle": "Francophonie", "libelleEdition": "FRANCOPHONIE", "libelleAbrege": "FRANCOPHONIE", "libelleAbrev": "FRANCOPHON", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thomas Descous", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808156.json b/public/organe/PO808156.json new file mode 100644 index 0000000..92ec7bf --- /dev/null +++ b/public/organe/PO808156.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808156", "codeType": "GEVI", "libelle": "Groupe d'\u00e9tudes \u00e0 vocation internationale sur les questions li\u00e9es \u00e0 l'expansion de l'\u00e9conomie ta\u00efwanaise", "libelleEdition": "de Groupe d'\u00e9tudes \u00e0 vocation internationale sur les questions li\u00e9es \u00e0 l'expansion de l'\u00e9conomie ta\u00efwanaise", "libelleAbrege": "Ta\u00efwan", "libelleAbrev": "TAI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre Zwickert", "secretaire02": null}, "listePays": {"paysRef": "GOP756468"}}} \ No newline at end of file diff --git a/public/organe/PO808161.json b/public/organe/PO808161.json new file mode 100644 index 0000000..34558f9 --- /dev/null +++ b/public/organe/PO808161.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808161", "codeType": "GA", "libelle": "France-Norv\u00e8ge", "libelleEdition": "de France-Norv\u00e8ge", "libelleAbrege": "Norv\u00e8ge", "libelleAbrev": "NOR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Camille Pagua", "secretaire02": null}, "listePays": {"paysRef": "GOP756393"}}} \ No newline at end of file diff --git a/public/organe/PO808166.json b/public/organe/PO808166.json new file mode 100644 index 0000000..9026eba --- /dev/null +++ b/public/organe/PO808166.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808166", "codeType": "GA", "libelle": "France-Timor Est", "libelleEdition": "de France-Timor Est", "libelleAbrege": "Timor Est", "libelleAbrev": "TIM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Simon Issard", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO808171.json b/public/organe/PO808171.json new file mode 100644 index 0000000..23b14a5 --- /dev/null +++ b/public/organe/PO808171.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808171", "codeType": "GE", "libelle": "Gens du voyage", "libelleEdition": "GENS DU VOYAGE", "libelleAbrege": "GENS DU VOYAGE", "libelleAbrev": "GENSVOYAGE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Rapha\u00ebl Cazaux", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808176.json b/public/organe/PO808176.json new file mode 100644 index 0000000..06cda91 --- /dev/null +++ b/public/organe/PO808176.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808176", "codeType": "GA", "libelle": "France-R\u00e9publique centrafricaine", "libelleEdition": "de France-R\u00e9publique centrafricaine", "libelleAbrege": "Centrafricaine (R\u00e9publique)", "libelleAbrev": "CTRA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Alan Cardin", "secretaire02": null}, "listePays": {"paysRef": "GOP756513"}}} \ No newline at end of file diff --git a/public/organe/PO808181.json b/public/organe/PO808181.json new file mode 100644 index 0000000..9e299f4 --- /dev/null +++ b/public/organe/PO808181.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808181", "codeType": "GA", "libelle": "France-Chili", "libelleEdition": "de France-Chili", "libelleAbrege": "Chili", "libelleAbrev": "CHIL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Charline Renaud", "secretaire02": null}, "listePays": {"paysRef": "GOP756568"}}} \ No newline at end of file diff --git a/public/organe/PO808186.json b/public/organe/PO808186.json new file mode 100644 index 0000000..d4bf766 --- /dev/null +++ b/public/organe/PO808186.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808186", "codeType": "GA", "libelle": "France-Qatar", "libelleEdition": "de France-Qatar", "libelleAbrege": "Qatar", "libelleAbrev": "QAT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Pascale Rey-Pantz", "secretaire02": null}, "listePays": {"paysRef": "GOP756477"}}} \ No newline at end of file diff --git a/public/organe/PO808191.json b/public/organe/PO808191.json new file mode 100644 index 0000000..864c654 --- /dev/null +++ b/public/organe/PO808191.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808191", "codeType": "GA", "libelle": "France-Tha\u00eflande", "libelleEdition": "de France-Tha\u00eflande", "libelleAbrege": "Tha\u00eflande", "libelleAbrev": "THAI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Didier Eifermann", "secretaire02": null}, "listePays": {"paysRef": "GOP756455"}}} \ No newline at end of file diff --git a/public/organe/PO808196.json b/public/organe/PO808196.json new file mode 100644 index 0000000..e61e56a --- /dev/null +++ b/public/organe/PO808196.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808196", "codeType": "GA", "libelle": "France-Belgique", "libelleEdition": "de France-Belgique", "libelleAbrege": "Belgique", "libelleAbrev": "BEL", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Claire Moisset", "secretaire02": null}, "listePays": {"paysRef": "GOP756421"}}} \ No newline at end of file diff --git a/public/organe/PO808201.json b/public/organe/PO808201.json new file mode 100644 index 0000000..04a7ef0 --- /dev/null +++ b/public/organe/PO808201.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808201", "codeType": "GA", "libelle": "France-Yemen", "libelleEdition": "de France-Yemen", "libelleAbrege": "Yemen", "libelleAbrev": "YEM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Leyla Arslan", "secretaire02": null}, "listePays": {"paysRef": "GOP756480"}}} \ No newline at end of file diff --git a/public/organe/PO808206.json b/public/organe/PO808206.json new file mode 100644 index 0000000..0352e98 --- /dev/null +++ b/public/organe/PO808206.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808206", "codeType": "GA", "libelle": "France-Jama\u00efque", "libelleEdition": "de France-Jama\u00efque", "libelleAbrege": "Jama\u00efque", "libelleAbrev": "JAM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Emilien Ricardo", "secretaire02": null}, "listePays": {"paysRef": "GOP756583"}}} \ No newline at end of file diff --git a/public/organe/PO808211.json b/public/organe/PO808211.json new file mode 100644 index 0000000..7d35b20 --- /dev/null +++ b/public/organe/PO808211.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808211", "codeType": "GA", "libelle": "France-Slovaquie", "libelleEdition": "de France-Slovaquie", "libelleAbrege": "Slovaquie", "libelleAbrev": "SLOVA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Apolline Nguyen-Khac", "secretaire02": null}, "listePays": {"paysRef": "GOP756408"}}} \ No newline at end of file diff --git a/public/organe/PO808216.json b/public/organe/PO808216.json new file mode 100644 index 0000000..b0b18e5 --- /dev/null +++ b/public/organe/PO808216.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808216", "codeType": "GE", "libelle": "Illettrisme et illectronisme", "libelleEdition": "ILLETTRISME ET ILLECTRONISME", "libelleAbrege": "ILLETTRISME ET ILLECTRONISME", "libelleAbrev": "ILLETTRISM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Fran\u00e7ois-Xavier Bayl\u00e9", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808221.json b/public/organe/PO808221.json new file mode 100644 index 0000000..0803242 --- /dev/null +++ b/public/organe/PO808221.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808221", "codeType": "GE", "libelle": "\u00celes anglo-normandes", "libelleEdition": "\u00ceLES ANGLO-NORMANDES", "libelleAbrege": "\u00ceLES ANGLO-NORMANDES", "libelleAbrev": "ILESANGLO", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Gabriel Livney", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808226.json b/public/organe/PO808226.json new file mode 100644 index 0000000..9d96947 --- /dev/null +++ b/public/organe/PO808226.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808226", "codeType": "GA", "libelle": "France-Namibie", "libelleEdition": "de France-Namibie", "libelleAbrege": "Namibie", "libelleAbrev": "NAM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thierry Bonnelle", "secretaire02": null}, "listePays": {"paysRef": "GOP756500"}}} \ No newline at end of file diff --git a/public/organe/PO808231.json b/public/organe/PO808231.json new file mode 100644 index 0000000..34dc4c5 --- /dev/null +++ b/public/organe/PO808231.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808231", "codeType": "GA", "libelle": "France-Equateur", "libelleEdition": "de France-Equateur", "libelleAbrege": "Equateur", "libelleAbrev": "EQU", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Blandine Le Gall", "secretaire02": null}, "listePays": {"paysRef": "GOP756571"}}} \ No newline at end of file diff --git a/public/organe/PO808236.json b/public/organe/PO808236.json new file mode 100644 index 0000000..ac2b337 --- /dev/null +++ b/public/organe/PO808236.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808236", "codeType": "GA", "libelle": "France-C\u00f4te d'Ivoire", "libelleEdition": "de France-C\u00f4te d'Ivoire", "libelleAbrege": "C\u00f4te d'Ivoire", "libelleAbrev": "CI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Philippe Sagot", "secretaire02": null}, "listePays": {"paysRef": "GOP756515"}}} \ No newline at end of file diff --git a/public/organe/PO808241.json b/public/organe/PO808241.json new file mode 100644 index 0000000..2f6c33a --- /dev/null +++ b/public/organe/PO808241.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808241", "codeType": "GE", "libelle": "Industries du luxe", "libelleEdition": "INDUSTRIES DU LUXE", "libelleAbrege": "INDUSTRIES DU LUXE", "libelleAbrev": "INDUSTLUXE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Charline Renaud", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808246.json b/public/organe/PO808246.json new file mode 100644 index 0000000..16635ba --- /dev/null +++ b/public/organe/PO808246.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808246", "codeType": "GA", "libelle": "France-Sri Lanka", "libelleEdition": "de France-Sri Lanka", "libelleAbrege": "Sri Lanka", "libelleAbrev": "SRI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Hakima Dahi", "secretaire02": null}, "listePays": {"paysRef": "GOP756467"}}} \ No newline at end of file diff --git a/public/organe/PO808251.json b/public/organe/PO808251.json new file mode 100644 index 0000000..eb8bbff --- /dev/null +++ b/public/organe/PO808251.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808251", "codeType": "GA", "libelle": "France-Am\u00e9rique centrale", "libelleEdition": "de France-Am\u00e9rique centrale", "libelleAbrege": "Am\u00e9rique centrale", "libelleAbrev": "AMQC", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Julien Barbot", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO808257.json b/public/organe/PO808257.json new file mode 100644 index 0000000..6a505d1 --- /dev/null +++ b/public/organe/PO808257.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808257", "codeType": "GA", "libelle": "France-Cap-Vert", "libelleEdition": "de France-Cap-Vert", "libelleAbrege": "Cap-Vert", "libelleAbrev": "CAPV", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thomas Laudignon", "secretaire02": null}, "listePays": {"paysRef": "GOP756549"}}} \ No newline at end of file diff --git a/public/organe/PO808262.json b/public/organe/PO808262.json new file mode 100644 index 0000000..38a3e60 --- /dev/null +++ b/public/organe/PO808262.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808262", "codeType": "GA", "libelle": "France-Asie centrale", "libelleEdition": null, "libelleAbrege": "Asie centrale", "libelleAbrev": "ASC", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Leyla Arslan", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO808267.json b/public/organe/PO808267.json new file mode 100644 index 0000000..d832d11 --- /dev/null +++ b/public/organe/PO808267.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808267", "codeType": "GA", "libelle": "France-Tchad", "libelleEdition": "de France-Tchad", "libelleAbrege": "Tchad", "libelleAbrev": "TCH", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Benjamin Deslus", "secretaire02": null}, "listePays": {"paysRef": "GOP756533"}}} \ No newline at end of file diff --git a/public/organe/PO808272.json b/public/organe/PO808272.json new file mode 100644 index 0000000..40a40d3 --- /dev/null +++ b/public/organe/PO808272.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808272", "codeType": "GE", "libelle": "Impact des changements climatiques", "libelleEdition": "IMPACT DES CHANGEMENTS CLIMATIQUES", "libelleAbrege": "IMPACT DES CHANGEMENTS CLIMATIQUES", "libelleAbrev": "IMPACTCLIM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Nathan Burlon", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808277.json b/public/organe/PO808277.json new file mode 100644 index 0000000..985b64b --- /dev/null +++ b/public/organe/PO808277.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808277", "codeType": "GA", "libelle": "France-Lituanie", "libelleEdition": "de France-Lituanie", "libelleAbrege": "Lituanie", "libelleAbrev": "LITU", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Roland Beaume", "secretaire02": null}, "listePays": {"paysRef": "GOP756400"}}} \ No newline at end of file diff --git a/public/organe/PO808282.json b/public/organe/PO808282.json new file mode 100644 index 0000000..c9c734d --- /dev/null +++ b/public/organe/PO808282.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808282", "codeType": "GE", "libelle": "Industries de d\u00e9fense", "libelleEdition": "INDUSTRIES DE D\u00c9FENSE", "libelleAbrege": "INDUSTRIES DE D\u00c9FENSE", "libelleAbrev": "INDUSDEFEN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Bertrand Vial", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808287.json b/public/organe/PO808287.json new file mode 100644 index 0000000..416a042 --- /dev/null +++ b/public/organe/PO808287.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808287", "codeType": "GA", "libelle": "France-Cor\u00e9e du Sud", "libelleEdition": "de France-Cor\u00e9e du Sud", "libelleAbrege": "Cor\u00e9e du Sud", "libelleAbrev": "COR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Tiennot Sciberras", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO808292.json b/public/organe/PO808292.json new file mode 100644 index 0000000..728433d --- /dev/null +++ b/public/organe/PO808292.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808292", "codeType": "GE", "libelle": "Handicap et inclusion", "libelleEdition": "HANDICAP ET INCLUSION", "libelleAbrege": "HANDICAP ET INCLUSION", "libelleAbrev": "HANDIINCLU", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. David Duarte", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808297.json b/public/organe/PO808297.json new file mode 100644 index 0000000..0b44b61 --- /dev/null +++ b/public/organe/PO808297.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808297", "codeType": "GA", "libelle": "France-Suisse", "libelleEdition": "de France-Suisse", "libelleAbrege": "Suisse", "libelleAbrev": "SUI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Julia Pajany", "secretaire02": null}, "listePays": {"paysRef": "GOP756434"}}} \ No newline at end of file diff --git a/public/organe/PO808302.json b/public/organe/PO808302.json new file mode 100644 index 0000000..960814f --- /dev/null +++ b/public/organe/PO808302.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808302", "codeType": "GA", "libelle": "France-Madagascar", "libelleEdition": "de France-Madagascar", "libelleAbrege": "Madagascar", "libelleAbrev": "MAD", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Guillaume Caulet", "secretaire02": null}, "listePays": {"paysRef": "GOP756522"}}} \ No newline at end of file diff --git a/public/organe/PO808307.json b/public/organe/PO808307.json new file mode 100644 index 0000000..86f4a9c --- /dev/null +++ b/public/organe/PO808307.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808307", "codeType": "GA", "libelle": "France-Afrique australe", "libelleEdition": "de France-Afrique australe", "libelleAbrege": "Afrique australe", "libelleAbrev": "BZZ", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-06", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Thierry Bonnelle", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO808312.json b/public/organe/PO808312.json new file mode 100644 index 0000000..e9b7b97 --- /dev/null +++ b/public/organe/PO808312.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808312", "codeType": "GA", "libelle": "France-Brune\u00ef Malaisie", "libelleEdition": null, "libelleAbrege": "Brune\u00ef-Malaisie", "libelleAbrev": "BRMA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Alix de Roubin", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO808322.json b/public/organe/PO808322.json new file mode 100644 index 0000000..95f0255 --- /dev/null +++ b/public/organe/PO808322.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO808322", "codeType": "GE", "libelle": "Insertion des jeunes, stagiaires et alternants", "libelleEdition": "INSERTION DES JEUNES, STAGIAIRES ET ALTERNANTS", "libelleAbrege": "INSERTION DES JEUNES, STAGIAIRES ET ALTERNANTS", "libelleAbrev": "INSERJEUNE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Nad\u00e8ge Azor", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO808327.json b/public/organe/PO808327.json new file mode 100644 index 0000000..0081181 --- /dev/null +++ b/public/organe/PO808327.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808327", "codeType": "GA", "libelle": "France-S\u00e3o Tom\u00e9 et Pr\u00edncipe", "libelleEdition": "de France-S\u00e3o Tom\u00e9 et Pr\u00edncipe", "libelleAbrege": "S\u00e3o Tom\u00e9 et Pr\u00edncipe", "libelleAbrev": "SAO", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-06-22", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Antoine Forcade", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO808858.json b/public/organe/PO808858.json new file mode 100644 index 0000000..02323c8 --- /dev/null +++ b/public/organe/PO808858.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO808858", "codeType": "GA", "libelle": "France-Liechtenstein", "libelleEdition": "de France-Liechtenstein", "libelleAbrege": "Liechtenstein", "libelleAbrev": "LICHTE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-06", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Sylvia Renard", "secretaire02": null}, "listePays": null}} \ No newline at end of file diff --git a/public/organe/PO810213.json b/public/organe/PO810213.json new file mode 100644 index 0000000..dc93c0d --- /dev/null +++ b/public/organe/PO810213.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810213", "codeType": "MISINFO", "libelle": "Mission d'information sur les d\u00e9penses fiscales et budg\u00e9taires en faveur du logement et de l'accession \u00e0 la propri\u00e9t\u00e9", "libelleEdition": null, "libelleAbrege": "D\u00e9penses fiscales et budg\u00e9taires logement", "libelleAbrev": "DEPFISCLOG", "viMoDe": {"dateDebut": "2022-12-08", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59048", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810274.json b/public/organe/PO810274.json new file mode 100644 index 0000000..9997a4b --- /dev/null +++ b/public/organe/PO810274.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810274", "codeType": "MISINFO", "libelle": "Mission d'information sur la r\u00e9mun\u00e9ration de l'\u00e9pargne populaire et des classes moyennes", "libelleEdition": null, "libelleAbrege": "R\u00e9mun\u00e9ration \u00e9pargne populaire", "libelleAbrev": "EPARGNEPOP", "viMoDe": {"dateDebut": "2022-12-08", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59048", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810330.json b/public/organe/PO810330.json new file mode 100644 index 0000000..19da21f --- /dev/null +++ b/public/organe/PO810330.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810330", "codeType": "MISINFO", "libelle": "Mission d'information sur l'\u00e9valuation des outils fiscaux et sociaux de partage de la valeur dans l'entreprise", "libelleEdition": null, "libelleAbrege": "Outils fiscaux et sociaux partage de valeur entreprise", "libelleAbrev": "PARTVALENT", "viMoDe": {"dateDebut": "2022-12-08", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59048", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810394.json b/public/organe/PO810394.json new file mode 100644 index 0000000..d05b023 --- /dev/null +++ b/public/organe/PO810394.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810394", "codeType": "MISINFO", "libelle": "Mission d'information sur les diff\u00e9rentiels de fiscalit\u00e9 entre entreprises", "libelleEdition": null, "libelleAbrege": "Diff\u00e9rentiels de fiscalit\u00e9 entreprises", "libelleAbrev": "FISCENTREP", "viMoDe": {"dateDebut": "2022-12-08", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59048", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810438.json b/public/organe/PO810438.json new file mode 100644 index 0000000..8c144cc --- /dev/null +++ b/public/organe/PO810438.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810438", "codeType": "MISINFO", "libelle": "Mission d'information sur la fiscalit\u00e9 du patrimoine", "libelleEdition": null, "libelleAbrege": "Fiscalit\u00e9 du patrimoine", "libelleAbrev": "FISCPATRIM", "viMoDe": {"dateDebut": "2022-12-08", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59048", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810484.json b/public/organe/PO810484.json new file mode 100644 index 0000000..72052fe --- /dev/null +++ b/public/organe/PO810484.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810484", "codeType": "MISINFO", "libelle": "Mission d'information sur la rationalisation de notre administration comme source d'\u00e9conomies budg\u00e9taires", "libelleEdition": null, "libelleAbrege": "Rationalisation administration", "libelleAbrev": "RATADMIN", "viMoDe": {"dateDebut": "2022-12-08", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59048", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810595.json b/public/organe/PO810595.json new file mode 100644 index 0000000..9b2801c --- /dev/null +++ b/public/organe/PO810595.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810595", "codeType": "GE", "libelle": "Adoption", "libelleEdition": "ADOPTION", "libelleAbrege": "ADOPTION", "libelleAbrev": "ADOPTION", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre-Michel Berillon", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810601.json b/public/organe/PO810601.json new file mode 100644 index 0000000..fb32ba4 --- /dev/null +++ b/public/organe/PO810601.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810601", "codeType": "GE", "libelle": "A\u00e9ronautique et espace", "libelleEdition": "A\u00c9RONAUTIQUE ET ESPACE", "libelleAbrege": "A\u00c9RONAUTIQUE ET ESPACE", "libelleAbrev": "AEROESPACE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre Zwickert", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810607.json b/public/organe/PO810607.json new file mode 100644 index 0000000..844ad15 --- /dev/null +++ b/public/organe/PO810607.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810607", "codeType": "GE", "libelle": "Alzheimer", "libelleEdition": "ALZHEIMER", "libelleAbrege": "ALZHEIMER", "libelleAbrev": "ALZHEIMER", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Manon Biganzoli", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810612.json b/public/organe/PO810612.json new file mode 100644 index 0000000..9ec7f03 --- /dev/null +++ b/public/organe/PO810612.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810612", "codeType": "GE", "libelle": "Camargue", "libelleEdition": "CAMARGUE", "libelleAbrege": "CAMARGUE", "libelleAbrev": "CAMARGUE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Jean Savoye", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810617.json b/public/organe/PO810617.json new file mode 100644 index 0000000..98e7a5e --- /dev/null +++ b/public/organe/PO810617.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810617", "codeType": "GE", "libelle": "Cannabis", "libelleEdition": "CANNABIS", "libelleAbrege": "CANNABIS", "libelleAbrev": "CANNABIS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Florian Augas", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810622.json b/public/organe/PO810622.json new file mode 100644 index 0000000..c0ebce6 --- /dev/null +++ b/public/organe/PO810622.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810622", "codeType": "GE", "libelle": "Chasse et p\u00eache", "libelleEdition": "CHASSE ET P\u00caCHE", "libelleAbrege": "CHASSE ET P\u00caCHE", "libelleAbrev": "CHASSEPECH", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Cl\u00e9mence Van Thuan", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810627.json b/public/organe/PO810627.json new file mode 100644 index 0000000..065314b --- /dev/null +++ b/public/organe/PO810627.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810627", "codeType": "GE", "libelle": "Grande consommation et pratiques commerciales dans la distribution", "libelleEdition": "GRANDE CONSOMMATION ET PRATIQUES COMMERCIALES DANS LA DISTRIBUTION", "libelleAbrege": "GRANDE CONSOMMATION ET PRATIQUES COMMERCIALES DANS LA DISTRIBUTION", "libelleAbrev": "CONSODISTR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Guillaume Bangoura", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810632.json b/public/organe/PO810632.json new file mode 100644 index 0000000..22fa113 --- /dev/null +++ b/public/organe/PO810632.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810632", "codeType": "GE", "libelle": "Gestion des d\u00e9chets, \u00e9conomie circulaire et \u00e9conomie verte", "libelleEdition": "GESTION DES D\u00c9CHETS, \u00c9CONOMIE CIRCULAIRE ET \u00c9CONOMIE VERTE", "libelleAbrege": "GESTION DES D\u00c9CHETS, \u00c9CONOMIE CIRCULAIRE ET \u00c9CONOMIE VERTE", "libelleAbrev": "DECHETCIRC", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Camille Vernadat", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810637.json b/public/organe/PO810637.json new file mode 100644 index 0000000..a1435f7 --- /dev/null +++ b/public/organe/PO810637.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810637", "codeType": "GE", "libelle": "D\u00e9mocratie participative et e-d\u00e9mocratie", "libelleEdition": "D\u00c9MOCRATIE PARTICIPATIVE ET E-D\u00c9MOCRATIE", "libelleAbrege": "D\u00c9MOCRATIE PARTICIPATIVE ET E-D\u00c9MOCRATIE", "libelleAbrev": "DEMOPARTIC", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Adrien Gros", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810643.json b/public/organe/PO810643.json new file mode 100644 index 0000000..97ab1be --- /dev/null +++ b/public/organe/PO810643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810643", "codeType": "GE", "libelle": "D\u00e9serts m\u00e9dicaux et acc\u00e8s aux soins", "libelleEdition": "D\u00c9SERTS M\u00c9DICAUX ET ACC\u00c8S AUX SOINS", "libelleAbrege": "D\u00c9SERTS M\u00c9DICAUX ET ACC\u00c8S AUX SOINS", "libelleAbrev": "DESERTSMED", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Nicolas Liscia-Beaurenaut", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810648.json b/public/organe/PO810648.json new file mode 100644 index 0000000..7549e73 --- /dev/null +++ b/public/organe/PO810648.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810648", "codeType": "GE", "libelle": "\u00c9conomie du livre et du papier", "libelleEdition": "\u00c9CONOMIE DU LIVRE ET DU PAPIER", "libelleAbrege": "\u00c9CONOMIE DU LIVRE ET DU PAPIER", "libelleAbrev": "ECOLIVRE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Claire Durand", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810653.json b/public/organe/PO810653.json new file mode 100644 index 0000000..101e1ee --- /dev/null +++ b/public/organe/PO810653.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810653", "codeType": "GE", "libelle": "\u00c9ducation populaire", "libelleEdition": "\u00c9DUCATION POPULAIRE", "libelleAbrege": "\u00c9DUCATION POPULAIRE", "libelleAbrev": "EDUCATPOP", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Capucine Gicquel", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810658.json b/public/organe/PO810658.json new file mode 100644 index 0000000..d66f635 --- /dev/null +++ b/public/organe/PO810658.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810658", "codeType": "GE", "libelle": "Espaces naturels prot\u00e9g\u00e9s", "libelleEdition": "ESPACES NATURELS PROT\u00c9G\u00c9S", "libelleAbrege": "ESPACES NATURELS PROT\u00c9G\u00c9S", "libelleAbrev": "ESPACESNAT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Lou Ansaldi", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810663.json b/public/organe/PO810663.json new file mode 100644 index 0000000..725a603 --- /dev/null +++ b/public/organe/PO810663.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810663", "codeType": "GE", "libelle": "Exploitations agricoles et structuration des fili\u00e8res", "libelleEdition": "EXPLOITATIONS AGRICOLES ET STRUCTURATION DES FILI\u00c8RES", "libelleAbrege": "EXPLOITATIONS AGRICOLES ET STRUCTURATION DES FILI\u00c8RES", "libelleAbrev": "EXPLOITAGR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Julien Bidoux P\u00e9rez", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810668.json b/public/organe/PO810668.json new file mode 100644 index 0000000..984fb12 --- /dev/null +++ b/public/organe/PO810668.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810668", "codeType": "GE", "libelle": "\u00c9conomie fluviale et maritime et fili\u00e8re halieutique", "libelleEdition": "\u00c9CONOMIE FLUVIALE ET MARITIME ET FILI\u00c8RE HALIEUTIQUE", "libelleAbrege": "\u00c9CONOMIE FLUVIALE ET MARITIME ET FILI\u00c8RE HALIEUTIQUE", "libelleAbrev": "FLUHALIEUT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Gabriel Aureau", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810673.json b/public/organe/PO810673.json new file mode 100644 index 0000000..3be1500 --- /dev/null +++ b/public/organe/PO810673.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810673", "codeType": "GE", "libelle": "Enjeux frontaliers et transfrontaliers", "libelleEdition": "ENJEUX FRONTALIERS ET TRANSFRONTALIERS", "libelleAbrege": "ENJEUX FRONTALIERS ET TRANSFRONTALIERS", "libelleAbrev": "FRONTALIER", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Benjamin Dourdy", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810678.json b/public/organe/PO810678.json new file mode 100644 index 0000000..d19cd7d --- /dev/null +++ b/public/organe/PO810678.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810678", "codeType": "GE", "libelle": "Logement et \u00e9coconstruction", "libelleEdition": "LOGEMENT ET \u00c9COCONSTRUCTION", "libelleAbrege": "LOGEMENT ET \u00c9COCONSTRUCTION", "libelleAbrev": "LOGEMENT", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Guillaume Caulet", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810683.json b/public/organe/PO810683.json new file mode 100644 index 0000000..76efe47 --- /dev/null +++ b/public/organe/PO810683.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810683", "codeType": "GE", "libelle": "Long\u00e9vit\u00e9 et adaptation de la soci\u00e9t\u00e9 au vieillissement", "libelleEdition": "LONG\u00c9VIT\u00c9 ET ADAPTATION DE LA SOCI\u00c9T\u00c9 AU VIEILLISSEMENT", "libelleAbrege": "LONG\u00c9VIT\u00c9 ET ADAPTATION DE LA SOCI\u00c9T\u00c9 AU VIEILLISSEMENT", "libelleAbrev": "LONGEVITE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Simon Revol", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810688.json b/public/organe/PO810688.json new file mode 100644 index 0000000..ce9bf69 --- /dev/null +++ b/public/organe/PO810688.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810688", "codeType": "GE", "libelle": "\u00c9nergies durables et hydrog\u00e8ne", "libelleEdition": "\u00c9NERGIES DURABLES ET HYDROG\u00c8NE", "libelleAbrege": "\u00c9NERGIES DURABLES ET HYDROG\u00c8NE", "libelleAbrev": "ENERGIES", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Alan Cardin", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810693.json b/public/organe/PO810693.json new file mode 100644 index 0000000..c5e5af4 --- /dev/null +++ b/public/organe/PO810693.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810693", "codeType": "GE", "libelle": "\u00c9conomie, s\u00e9curit\u00e9 et souverainet\u00e9 num\u00e9riques", "libelleEdition": "\u00c9CONOMIE, S\u00c9CURIT\u00c9 ET SOUVERAINET\u00c9 NUM\u00c9RIQUES", "libelleAbrege": "\u00c9CONOMIE, S\u00c9CURIT\u00c9 ET SOUVERAINET\u00c9 NUM\u00c9RIQUES", "libelleAbrev": "NUMERIQUE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. St\u00e9phane Sandeyron", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810699.json b/public/organe/PO810699.json new file mode 100644 index 0000000..6ca98eb --- /dev/null +++ b/public/organe/PO810699.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810699", "codeType": "GE", "libelle": "Ou\u00efghours", "libelleEdition": "OU\u00cfGHOURS", "libelleAbrege": "OU\u00cfGHOURS", "libelleAbrev": "OUIGHOURS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Roman Rousset", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810704.json b/public/organe/PO810704.json new file mode 100644 index 0000000..18e0107 --- /dev/null +++ b/public/organe/PO810704.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810704", "codeType": "GE", "libelle": "Pastoralisme", "libelleEdition": "PASTORALISME", "libelleAbrege": "PASTORALISME", "libelleAbrev": "PASTORALIS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Apolline Nguyen-Khac", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810709.json b/public/organe/PO810709.json new file mode 100644 index 0000000..38f181d --- /dev/null +++ b/public/organe/PO810709.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810709", "codeType": "GE", "libelle": "Polices municipales", "libelleEdition": "POLICES MUNICIPALES", "libelleAbrege": "POLICES MUNICIPALES", "libelleAbrev": "POLICEMUN", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Jason Graindepice", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810715.json b/public/organe/PO810715.json new file mode 100644 index 0000000..6674b13 --- /dev/null +++ b/public/organe/PO810715.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810715", "codeType": "GE", "libelle": "Prostitution", "libelleEdition": "PROSTITUTION", "libelleAbrege": "PROSTITUTION", "libelleAbrev": "PROSTITUTI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Tomas Aparisi de Lannoy", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810721.json b/public/organe/PO810721.json new file mode 100644 index 0000000..2b83d97 --- /dev/null +++ b/public/organe/PO810721.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810721", "codeType": "GE", "libelle": "R\u00e9seaux sociaux", "libelleEdition": "R\u00c9SEAUX SOCIAUX", "libelleAbrege": "R\u00c9SEAUX SOCIAUX", "libelleAbrev": "RESEAUSOC", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Louis Bauer", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810726.json b/public/organe/PO810726.json new file mode 100644 index 0000000..92fd927 --- /dev/null +++ b/public/organe/PO810726.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810726", "codeType": "GE", "libelle": "Ruralit\u00e9", "libelleEdition": "RURALIT\u00c9", "libelleAbrege": "RURALIT\u00c9", "libelleAbrev": "RURALITE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Emilie Aubry", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810731.json b/public/organe/PO810731.json new file mode 100644 index 0000000..24b184c --- /dev/null +++ b/public/organe/PO810731.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810731", "codeType": "GE", "libelle": "Sahara\u00a0occidental", "libelleEdition": "SAHARA OCCIDENTAL", "libelleAbrege": "SAHARA\u00a0OCCIDENTAL", "libelleAbrev": "SAHARAOCCI", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Elena Cr\u00e9tois-Validzic", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810736.json b/public/organe/PO810736.json new file mode 100644 index 0000000..5a6935e --- /dev/null +++ b/public/organe/PO810736.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810736", "codeType": "GE", "libelle": "Sant\u00e9 mentale", "libelleEdition": "SANT\u00c9 MENTALE", "libelleAbrege": "SANT\u00c9 MENTALE", "libelleAbrev": "SANTEMENTA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "Mme Catherine Weill", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810741.json b/public/organe/PO810741.json new file mode 100644 index 0000000..0223362 --- /dev/null +++ b/public/organe/PO810741.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810741", "codeType": "GE", "libelle": "Sapeurs-pompiers, s\u00e9curit\u00e9 civile et gestion des crises", "libelleEdition": "SAPEURS-POMPIERS, S\u00c9CURIT\u00c9 CIVILE ET GESTION DES CRISES", "libelleAbrege": "SAPEURS-POMPIERS, S\u00c9CURIT\u00c9 CIVILE ET GESTION DES CRISES", "libelleAbrev": "SAPEURS", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Beno\u00eet Rinnert", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810746.json b/public/organe/PO810746.json new file mode 100644 index 0000000..84c530b --- /dev/null +++ b/public/organe/PO810746.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810746", "codeType": "GE", "libelle": "S\u00e9curit\u00e9 priv\u00e9e", "libelleEdition": "S\u00c9CURIT\u00c9 PRIV\u00c9E", "libelleAbrege": "S\u00c9CURIT\u00c9 PRIV\u00c9E", "libelleAbrev": "SECUPRIVEE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Jean Gaudioso", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810751.json b/public/organe/PO810751.json new file mode 100644 index 0000000..47104ee --- /dev/null +++ b/public/organe/PO810751.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810751", "codeType": "GE", "libelle": "S\u00e9curit\u00e9 routi\u00e8re", "libelleEdition": "S\u00c9CURIT\u00c9 ROUTI\u00c8RE", "libelleAbrege": "S\u00c9CURIT\u00c9 ROUTI\u00c8RE", "libelleAbrev": "SECUROUTE", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Pierre-Laurent Holleville", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810756.json b/public/organe/PO810756.json new file mode 100644 index 0000000..ec9fa4a --- /dev/null +++ b/public/organe/PO810756.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810756", "codeType": "GE", "libelle": "Simplification administrative", "libelleEdition": "SIMPLIFICATION ADMINISTRATIVE", "libelleAbrege": "SIMPLIFICATION ADMINISTRATIVE", "libelleAbrev": "SIMPLIFADM", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Jan Bediat", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810761.json b/public/organe/PO810761.json new file mode 100644 index 0000000..7073f7c --- /dev/null +++ b/public/organe/PO810761.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810761", "codeType": "GE", "libelle": "Territoires en reconversion", "libelleEdition": "TERRITOIRES EN RECONVERSION", "libelleAbrege": "TERRITOIRES EN RECONVERSION", "libelleAbrev": "TERRITOIR", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Daniel Montin", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810766.json b/public/organe/PO810766.json new file mode 100644 index 0000000..9727f39 --- /dev/null +++ b/public/organe/PO810766.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810766", "codeType": "GE", "libelle": "Tourisme et patrimoine", "libelleEdition": "TOURISME ET PATRIMOINE", "libelleAbrege": "TOURISME ET PATRIMOINE", "libelleAbrev": "TOURISME", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Beno\u00eet Bimbault", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO810772.json b/public/organe/PO810772.json new file mode 100644 index 0000000..25c9156 --- /dev/null +++ b/public/organe/PO810772.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO810772", "codeType": "GE", "libelle": "VIH et Sida", "libelleEdition": "VIH ET SIDA", "libelleAbrege": "VIH ET SIDA", "libelleAbrev": "VIHSIDA", "viMoDe": {"dateDebut": null, "dateAgrement": "2022-12-07", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Fran\u00e7ois-Xavier Carabelli", "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO812752.json b/public/organe/PO812752.json new file mode 100644 index 0000000..e63e990 --- /dev/null +++ b/public/organe/PO812752.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO812752", "codeType": "CNPE", "libelle": "Commission d\u2019enqu\u00eate relative aux ing\u00e9rences politiques, \u00e9conomiques et financi\u00e8res de puissances \u00e9trang\u00e8res \u2013 \u00c9tats, organisations, entreprises, groupes d\u2019int\u00e9r\u00eats, personnes priv\u00e9es \u2013 visant \u00e0 influencer ou corrompre des relais d\u2019opinion, des dirigeants ou des partis politiques fran\u00e7ais", "libelleEdition": "de la commission d\u2019enqu\u00eate relative aux ing\u00e9rences politiques, \u00e9conomiques et financi\u00e8res de puissances \u00e9trang\u00e8res \u2013 \u00c9tats, organisations, entreprises, groupes d\u2019int\u00e9r\u00eats, personnes priv\u00e9es \u2013 visant \u00e0 influencer ou corrompre des relais d\u2019opinion, des dirigeants ou des partis politiques fran\u00e7ais", "libelleAbrege": "Commission d\u2019enqu\u00eate relative aux ing\u00e9rences \u00e9trang\u00e8res", "libelleAbrev": "CEINGEREN", "viMoDe": {"dateDebut": "2022-12-06", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO812997.json b/public/organe/PO812997.json new file mode 100644 index 0000000..ab8a487 --- /dev/null +++ b/public/organe/PO812997.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO812997", "codeType": "MISINFO", "libelle": "Mission d'information sur les relations entre la France et l\u2019Afrique", "libelleEdition": "Mission d'information sur les relations entre la France et l\u2019Afrique", "libelleAbrege": "Mission d'information sur les relations entre la France et l\u2019Afrique", "libelleAbrev": "MI AFRIQUE", "viMoDe": {"dateDebut": "2022-12-14", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59047", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO815621.json b/public/organe/PO815621.json new file mode 100644 index 0000000..5db8867 --- /dev/null +++ b/public/organe/PO815621.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO815621", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de suivi charg\u00e9 de veiller au suivi de la mise en \u0153uvre et \u00e0 l'\u00e9valuation des mesures de soutien financier aux entreprises confront\u00e9es \u00e0 l'\u00e9pid\u00e9mie de covid-19 et aux perturbations \u00e9conomiques engendr\u00e9es par les cons\u00e9quences de l'agression de la Russie contre l'Ukraine", "libelleEdition": null, "libelleAbrege": "Suivi soutien entreprises covid-19 et agression contre l'Ukraine", "libelleAbrev": "409", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article IX de l\u2019article 6 de la loi n\u00b0 2020-289 du 23 mars 2020 de finances rectificative pour 2020", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO815629.json b/public/organe/PO815629.json new file mode 100644 index 0000000..796e52d --- /dev/null +++ b/public/organe/PO815629.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO815629", "codeType": "ORGEXTPARL", "libelle": "Commission nationale ind\u00e9pendante de reconnaissance et de r\u00e9paration des pr\u00e9judices subis par les harkis, les autres personnes rapatri\u00e9es d'Alg\u00e9rie anciennement de statut civil de droit local et les membres de leurs famille", "libelleEdition": null, "libelleAbrege": "Commission reconnaissance harkis", "libelleAbrev": "406", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": null, "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO815643.json b/public/organe/PO815643.json new file mode 100644 index 0000000..6c84dae --- /dev/null +++ b/public/organe/PO815643.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO815643", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 d'\u00e9valuation charg\u00e9 du suivi de l'exp\u00e9rimentation pr\u00e9vue aux II et III de l'article 63 de la loi n\u00b0 2019-222 du 23 mars 2019 de programmation 2018-2022 et de r\u00e9forme pour la justice", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 \u00e9valuation exp\u00e9rimentation r\u00e9forme de la justice", "libelleAbrev": "404", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": null, "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO815651.json b/public/organe/PO815651.json new file mode 100644 index 0000000..8c8e829 --- /dev/null +++ b/public/organe/PO815651.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO815651", "codeType": "ORGEXTPARL", "libelle": "Plateforme nationale d'actions globales pour la responsabilit\u00e9 soci\u00e9tale des entreprises", "libelleEdition": null, "libelleAbrege": "Plateforme RSE", "libelleAbrev": "403", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article 60 de la loi n\u00b0 2005-882 du 2 ao\u00fbt 2005", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO815657.json b/public/organe/PO815657.json new file mode 100644 index 0000000..a3a2a94 --- /dev/null +++ b/public/organe/PO815657.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO815657", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'\u00e9conomie circulaire", "libelleEdition": null, "libelleAbrege": "Conseil national de l'\u00e9conomie circulaire", "libelleAbrev": "400", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article 541-1 du code de l'environnement", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO815702.json b/public/organe/PO815702.json new file mode 100644 index 0000000..14e6cce --- /dev/null +++ b/public/organe/PO815702.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO815702", "codeType": "MISINFO", "libelle": "Mission d\u2019information sur l\u2019\u00e9valuation de l\u2019impact de la loi n\u00b0 2018-515 du 27 juin 2018 pour un nouveau pacte ferroviaire", "libelleEdition": null, "libelleAbrege": "apploi pacte ferroviaire", "libelleAbrev": "PACTFERROV", "viMoDe": {"dateDebut": "2023-01-18", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419865", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO815781.json b/public/organe/PO815781.json new file mode 100644 index 0000000..f805d5d --- /dev/null +++ b/public/organe/PO815781.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO815781", "codeType": "ORGEXTPARL", "libelle": "Comit\u00e9 de pilotage institu\u00e9 par la loi n\u00b0 2019-1480 du 28 d\u00e9cembre 2019 visant \u00e0 agir contre les violences au sein de la famille", "libelleEdition": null, "libelleAbrege": "Comit\u00e9 de pilotage lutte violences conjugales", "libelleAbrev": "396", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "Article 15 de la loi n\u00b0 2019-1480 du 28 d\u00e9cembre 2019 visant \u00e0 agir contre les violences au sein de la famille", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO817720.json b/public/organe/PO817720.json new file mode 100644 index 0000000..5fd6de1 --- /dev/null +++ b/public/organe/PO817720.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO817720", "codeType": "CNPE", "libelle": "Commission d\u2019enqu\u00eate relative aux r\u00e9v\u00e9lations des Uber Files : l\u2019ub\u00e9risation, son lobbying et ses cons\u00e9quences", "libelleEdition": "de la commission d\u2019enqu\u00eate relative aux r\u00e9v\u00e9lations des Uber Files : l\u2019ub\u00e9risation, son lobbying et ses cons\u00e9quences", "libelleAbrege": "Commission d\u2019enqu\u00eate Uber Files", "libelleAbrev": "CEUBERFIL", "viMoDe": {"dateDebut": "2023-01-24", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO818358.json b/public/organe/PO818358.json new file mode 100644 index 0000000..9b4a535 --- /dev/null +++ b/public/organe/PO818358.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO818358", "codeType": "COMSPSENAT", "libelle": "CZAN", "libelleEdition": null, "libelleAbrege": "CZAN", "libelleAbrev": "CZANC", "viMoDe": {"dateDebut": "2023-02-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO818371.json b/public/organe/PO818371.json new file mode 100644 index 0000000..d368695 --- /dev/null +++ b/public/organe/PO818371.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExterne_Type", "uid": "PO818371", "codeType": "COMSPSENAT", "libelle": "CS Risque incendie", "libelleEdition": null, "libelleAbrege": "CS Risque incendie", "libelleAbrev": "CINCC", "viMoDe": {"dateDebut": "2023-02-01", "dateAgrement": null, "dateFin": null}, "organeParent": null}} \ No newline at end of file diff --git a/public/organe/PO819148.json b/public/organe/PO819148.json new file mode 100644 index 0000000..8d27155 --- /dev/null +++ b/public/organe/PO819148.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO819148", "codeType": "MISINFO", "libelle": "Mission d'information sur l'activisme violent", "libelleEdition": null, "libelleAbrege": "Mission d'information sur l'activisme violent", "libelleAbrev": "ACTVIOLENT", "viMoDe": {"dateDebut": "2023-02-07", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59051", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO819231.json b/public/organe/PO819231.json new file mode 100644 index 0000000..8f538d8 --- /dev/null +++ b/public/organe/PO819231.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO819231", "codeType": "MISINFO", "libelle": "Mission d'information sur les alternatives \u00e0 la d\u00e9tention et l'\u00e9ventuelle cr\u00e9ation d'un m\u00e9canisme de r\u00e9gulation carc\u00e9rale", "libelleEdition": null, "libelleAbrege": "Alternatives \u00e0 la d\u00e9tention et cr\u00e9ation d'un m\u00e9canisme de r\u00e9gulation carc\u00e9rale", "libelleAbrev": "REGUCARCE", "viMoDe": {"dateDebut": "2023-02-07", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59051", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO819533.json b/public/organe/PO819533.json new file mode 100644 index 0000000..79807fe --- /dev/null +++ b/public/organe/PO819533.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO819533", "codeType": "MISINFO", "libelle": "Mission d'information sur l'autonomie alimentaire des outre-mer", "libelleEdition": "de la mission d'information sur l'autonomie alimentaire des outre-mer", "libelleAbrege": "Autonomie alimentaire des outre-mer", "libelleAbrev": "AUTOALIMEN", "viMoDe": {"dateDebut": "2022-10-11", "dateAgrement": null, "dateFin": null}, "organeParent": "PO675659", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO819576.json b/public/organe/PO819576.json new file mode 100644 index 0000000..164cf8f --- /dev/null +++ b/public/organe/PO819576.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO819576", "codeType": "MISINFO", "libelle": "Mission d'information sur l'autonomie \u00e9nerg\u00e9tique des outre-mer", "libelleEdition": "de la mission d'information sur l'autonomie \u00e9nerg\u00e9tique des outre-mer", "libelleAbrege": "Autonomie \u00e9nerg\u00e9tique des outre-mer", "libelleAbrev": "AUTONOMNRJ", "viMoDe": {"dateDebut": "2022-10-11", "dateAgrement": null, "dateFin": null}, "organeParent": "PO675659", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO819609.json b/public/organe/PO819609.json new file mode 100644 index 0000000..6921224 --- /dev/null +++ b/public/organe/PO819609.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO819609", "codeType": "MISINFO", "libelle": "Mission d'information sur la situation d\u00e9mographique des outre-mer et le maintien des forces vices dans ces territoires", "libelleEdition": "de la mission d'information sur la situation d\u00e9mographique des outre-mer et le maintien des forces vices dans ces territoires", "libelleAbrege": "Situation d\u00e9mographique des outre-mer et maintien des forces vices", "libelleAbrev": "DEMOGRAPOM", "viMoDe": {"dateDebut": "2022-10-11", "dateAgrement": null, "dateFin": null}, "organeParent": "PO675659", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO820135.json b/public/organe/PO820135.json new file mode 100644 index 0000000..62e8d2f --- /dev/null +++ b/public/organe/PO820135.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeExtraParlementaire_type", "uid": "PO820135", "codeType": "ORGEXTPARL", "libelle": "Conseil national de l'adoption", "libelleEdition": null, "libelleAbrege": "CNA", "libelleAbrev": "410", "viMoDe": {"dateDebut": null, "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": null, "legislature": null, "regimeJuridique": "L. 147-12 code action sociale et familles", "siteInternet": null, "nombreReunionsAnnuelles": null}} \ No newline at end of file diff --git a/public/organe/PO820615.json b/public/organe/PO820615.json new file mode 100644 index 0000000..3eb4826 --- /dev/null +++ b/public/organe/PO820615.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO820615", "codeType": "CNPE", "libelle": "Commission d'enqu\u00eate sur le co\u00fbt de la vie dans les collectivit\u00e9s territoriales r\u00e9gies par les articles 73 et 74 de la Constitution", "libelleEdition": "de la commission d'enqu\u00eate sur le co\u00fbt de la vie dans les collectivit\u00e9s territoriales r\u00e9gies par les articles 73 et 74 de la Constitution", "libelleAbrege": "Commission d'enqu\u00eate co\u00fbt de la vie en outre-mer", "libelleAbrev": "CECVOM", "viMoDe": {"dateDebut": "2023-02-09", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO821119.json b/public/organe/PO821119.json new file mode 100644 index 0000000..9934ce4 --- /dev/null +++ b/public/organe/PO821119.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO821119", "codeType": "MISINFO", "libelle": "Mission d'information sur l'adaptation de l'\u00e9cole aux enjeux climatiques", "libelleEdition": null, "libelleAbrege": "MI \u00e9cole et enjeux climatiques", "libelleAbrev": "ECOLCLIMAT", "viMoDe": {"dateDebut": "2023-03-02", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419604", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO821566.json b/public/organe/PO821566.json new file mode 100644 index 0000000..e22ad59 --- /dev/null +++ b/public/organe/PO821566.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO821566", "codeType": "MISINFOCOM", "libelle": "Mission d\u2019information commune sur la r\u00e9novation \u00e9nerg\u00e9tique des b\u00e2timents", "libelleEdition": "de la mission d\u2019information commune sur la r\u00e9novation \u00e9nerg\u00e9tique des b\u00e2timents", "libelleAbrege": "R\u00e9novation \u00e9nerg\u00e9tique des b\u00e2timents", "libelleAbrev": "RENOVBAT", "viMoDe": {"dateDebut": "2023-03-08", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO821826.json b/public/organe/PO821826.json new file mode 100644 index 0000000..32c737e --- /dev/null +++ b/public/organe/PO821826.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO821826", "codeType": "CMP", "libelle": "Commission mixte paritaire charg\u00e9e de proposer un texte sur les dispositions restant en discussion de la proposition de loi portant am\u00e9lioration de l'acc\u00e8s aux soins par la confiance aux professionnels de sant\u00e9", "libelleEdition": "de la commission mixte paritaire charg\u00e9e de proposer un texte sur les dispositions restant en discussion de la proposition de loi portant am\u00e9lioration de l'acc\u00e8s aux soins par la confiance aux professionnels de sant\u00e9", "libelleAbrege": "Acc\u00e8s aux soins", "libelleAbrev": "362", "viMoDe": {"dateDebut": "2023-03-13", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO822178.json b/public/organe/PO822178.json new file mode 100644 index 0000000..8c0b14b --- /dev/null +++ b/public/organe/PO822178.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO822178", "codeType": "CMP", "libelle": "Commission mixte paritaire charg\u00e9e de proposer un texte sur les dispositions restant en discussion du projet de loi relatif \u00e0 l'acc\u00e9l\u00e9ration des proc\u00e9dures li\u00e9es \u00e0 la construction de nouvelles installations nucl\u00e9aires \u00e0 proximit\u00e9 de sites nucl\u00e9aires existants et au fonctionnement des installations existantes", "libelleEdition": "Commission mixte paritaire charg\u00e9e de proposer un texte sur les dispositions restant en discussion du projet de loi relatif \u00e0 l'acc\u00e9l\u00e9ration des proc\u00e9dures li\u00e9es \u00e0 la construction de nouvelles installations nucl\u00e9aires \u00e0 proximit\u00e9 de sites nucl\u00e9aires existants", "libelleAbrege": "Installations nucl\u00e9aires", "libelleAbrev": "762", "viMoDe": {"dateDebut": "2023-03-23", "dateAgrement": null, "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO822430.json b/public/organe/PO822430.json new file mode 100644 index 0000000..5287b8b --- /dev/null +++ b/public/organe/PO822430.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaireInternational", "uid": "PO822430", "codeType": "GEVI", "libelle": "Groupe d'\u00e9tudes \u00e0 vocation internationale sur la Bi\u00e9lorussie", "libelleEdition": null, "libelleAbrege": "Bi\u00e9lorussie", "libelleAbrev": "BIE", "viMoDe": {"dateDebut": null, "dateAgrement": "2023-03-29", "dateFin": null}, "organeParent": null, "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": "M. Lucas Fournier", "secretaire02": null}, "listePays": {"paysRef": "GOP756437"}}} \ No newline at end of file diff --git a/public/organe/PO822556.json b/public/organe/PO822556.json new file mode 100644 index 0000000..7912603 --- /dev/null +++ b/public/organe/PO822556.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO822556", "codeType": "MISINFO", "libelle": "mission d'information sur l'\u00e9ducation et le num\u00e9rique", "libelleEdition": null, "libelleAbrege": "\u00e9ducation et num\u00e9rique", "libelleAbrev": "EDUCNUM", "viMoDe": {"dateDebut": "2023-03-29", "dateAgrement": null, "dateFin": null}, "organeParent": "PO804431", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO822943.json b/public/organe/PO822943.json new file mode 100644 index 0000000..f87addf --- /dev/null +++ b/public/organe/PO822943.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO822943", "codeType": "MISINFO", "libelle": "Mission d'information relative \u00e0 l\u2019impact du d\u00e9ploiement des entrep\u00f4ts", "libelleEdition": "de la mission d'information relative \u00e0 l\u2019impact du d\u00e9ploiement des entrep\u00f4ts", "libelleAbrege": "impact d\u00e9ploiement entrep\u00f4ts", "libelleAbrev": "DEPENTREPO", "viMoDe": {"dateDebut": "2023-04-12", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419610", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO822950.json b/public/organe/PO822950.json new file mode 100644 index 0000000..b5ac0f6 --- /dev/null +++ b/public/organe/PO822950.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO822950", "codeType": "MISINFO", "libelle": "Mission d\u2019\u00e9valuation de la loi du 14 d\u00e9cembre 2020 relative aux conditions de mise sur le march\u00e9 de certains produits phytopharmaceutiques en cas de danger sanitaire pour les betteraves sucri\u00e8res", "libelleEdition": "de la mission d\u2019\u00e9valuation de la loi du 14 d\u00e9cembre 2020 relative aux conditions de mise sur le march\u00e9 de certains produits phytopharmaceutiques en cas de danger sanitaire pour les betteraves sucri\u00e8res", "libelleAbrege": "produits phyto danger betteraves sucri\u00e8res", "libelleAbrev": "BET SUCRE", "viMoDe": {"dateDebut": "2023-04-12", "dateAgrement": null, "dateFin": null}, "organeParent": "PO419610", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO823414.json b/public/organe/PO823414.json new file mode 100644 index 0000000..deb6ddb --- /dev/null +++ b/public/organe/PO823414.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO823414", "codeType": "MISINFO", "libelle": "Intelligence artificielle et protection des donn\u00e9es personnelles", "libelleEdition": "D\u00e9fis de l\u2019intelligence artificielle g\u00e9n\u00e9rative en mati\u00e8re de protection des donn\u00e9es personnelles et d\u2019utilisation du contenu g\u00e9n\u00e9r\u00e9", "libelleAbrege": "Intelligence artificielle et protection des donn\u00e9es personnelles", "libelleAbrev": "IA", "viMoDe": {"dateDebut": "2023-05-03", "dateAgrement": null, "dateFin": null}, "organeParent": "PO59051", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file diff --git a/public/organe/PO823492.json b/public/organe/PO823492.json new file mode 100644 index 0000000..01003e1 --- /dev/null +++ b/public/organe/PO823492.json @@ -0,0 +1 @@ +{"organe": {"@xmlns": "http://schemas.assemblee-nationale.fr/referentiel", "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance", "@xsi:type": "OrganeParlementaire_Type", "uid": "PO823492", "codeType": "MISINFO", "libelle": "mission d'information instruction des enfants en situation de handicap", "libelleEdition": "mission d'information instruction des enfants en situation de handicap", "libelleAbrege": "instruction des enfants en situation de handicap", "libelleAbrev": "MIENFHAND", "viMoDe": {"dateDebut": "2023-05-03", "dateAgrement": null, "dateFin": null}, "organeParent": "PO804431", "chambre": null, "regime": "5\u00e8me R\u00e9publique", "legislature": "16", "secretariat": {"secretaire01": null, "secretaire02": null}}} \ No newline at end of file