Parsing JSON and build TR/TD element on each `tipo` value

Parsing JSON and build TR/TD element on each `tipo` value

I have this JSON:

  1.     [ {"tipo":"Diurno"},{"patente":"XZ7410"},{"nombre":"Marcela Bien"},
  2.       {"revisado":1},{"id_registro":"9"},
  3.       {"tipo":"Diurno"},{"patente":"EW3651"},{"nombre":"Marcela Bien"},
  4.       {"revisado":null},{"id_registro":"11"},
  5.       {"tipo":"Vespertino"},{"patente":"XZ7410"},{"nombre":"Alexis Diaz"},
  6.       {"revisado":1},{"id_registro":"10"} ]

Each `tipo` defines a new row in a `table` for example:

  1.     <tr>
  2.      <td>Diurno</td>
  3.      <td>XZ7410</td>
  4.      <td>....</td>
  5.     </tr>
  6.     <tr>
  7.      <td>Diurno</td>
  8.      <td>EW3651</td>
  9.      <td>....</td>
  10.     </tr>
  11.     <tr>
  12.      <td>Vespertino</td>
  13.      <td>XZ7410</td>
  14.      <td>....</td>
  15.     </tr>

So I wrote this code:

  1.         $(document).ready(function() {
  2.             $.ajax({
  3.                 type: 'get',
  4.                 url: '<?php echo url_for('dashboard/BuildAjax') ?>',
  5.                 dataType: 'json',
  6.                 success: function(data) {
  7.                         $.each(data, function(k, v) {
  8.                             console.log(k + " : " + v);
  9.                         });
  10.                 },
  11.                 error: function() {
  12.                     alert('<?php echo __('Error al cargar los datos') ?>');
  13.                 }
  14.             });
  15.         });

But I need to create as many TR with TD values as elements come in the JSON values, how I can get this?