Amendement

Amendement 14, déposé par Sylvain Carrière, proposition de loi visant à supprimer les zones à faibles émissions mobilité

Informations complémentaires

  • Voir l'amendement en HTML sur le site de l'Assemblée
    Comment est obtenu ce lien ?
    function assembleeHtmlUrlFromAmendementUid(amendement) {
      const { numeroLong, prefixeOrganeExamen } = amendement.identification;
      const numeroAmendement = numeroLong.replace(/^I-/, "");
      const match = amendement.uid.match(/(\d+)P\d+D\d+N\d+$/);
      if (match === null) {
        return void 0;
      }
      let numeroTexte = match[1];
      if (numeroLong.startsWith("I-")) {
        numeroTexte += "A";
      }
      return `https://www.assemblee-nationale.fr/dyn/${amendement.legislature}/amendements/${numeroTexte}/${prefixeOrganeExamen}/${numeroAmendement}`;
    }
  • Voir l'amendement en PDF sur le site de l'Assemblée
    Comment est obtenu ce lien ?
    function assembleePdfUrlFromAmendementUid(amendement) {
      const { numeroLong, prefixeOrganeExamen } = amendement.identification;
      const numeroAmendement = numeroLong.replace(/^I-/, "");
      const match = amendement.uid.match(/(\d+)P\d+D\d+N\d+$/);
      if (match === null) {
        return void 0;
      }
      let numeroTexte = match[1];
      if (numeroLong.startsWith("I-")) {
        numeroTexte += "A";
      }
      return `https://www.assemblee-nationale.fr/dyn/${amendement.legislature}/amendements/${numeroTexte}/${prefixeOrganeExamen}/${numeroAmendement}.pdf`;
    }
  • Voir l'amendement au format Word/LibreOffice sur le site de l'Assemblée
    Comment est obtenu ce lien ?
    function assembleeRtfUrlFromAmendementUid(amendement) {
      const { numeroLong, prefixeOrganeExamen } = amendement.identification;
      const numeroAmendement = numeroLong.replace(/^I-/, "");
      const match = amendement.uid.match(/(\d+)P\d+D\d+N\d+$/);
      if (match === null) {
        return void 0;
      }
      let numeroTexte = match[1];
      if (numeroLong.startsWith("I-")) {
        numeroTexte += "A";
      }
      return `https://www.assemblee-nationale.fr/dyn/${amendement.legislature}/amendements/${numeroTexte}/${prefixeOrganeExamen}/${numeroAmendement}.rtf`;
    }
  • Voir l'amendement au format XML sur le site de l'Assemblée
    Comment est obtenu ce lien ?
    function assembleeXmlUrlFromAmendementUid(amendement) {
      return `https://www.assemblee-nationale.fr/dyn/opendata/${amendement.uid}.xml`;
    }
  • Voir l'amendement au format JSON sur le site de l'Assemblée
    Comment est obtenu ce lien ?
    function assembleeJsonUrlFromAmendementUid(amendement) {
      return `https://www.assemblee-nationale.fr/dyn/opendata/${amendement.uid}.json`;
    }