Definir argumentos json desde html:
   var jsonArg1= new Object();
       jsonArg1.plantilla = document.getElementById('campo1').value; ;
   var jsonArg2 = new Object();
       jsonArg2.anio = document.getElementById('campo2').value;


  
crear arreglos para
    var arreglo = new Array();
    arreglo.push(jsonArg1);
    arreglo.push(jsonArg2);
 
*convertir a string el json
  
    var arg = (JSON.stringify(arreglo));
  
   
Codigo para el PHP
  $json = json_decode($_POST["parametros"],true);

  $campo1 = $json[0]["campo1"];
  $campo2 = $json[1]["campo1"];