Basically to its layout would be like this:
return Json(new
        {
            rows = new object[] {
                new {
                    data = new string[]
                    {
                        "1", "NomeTeste", "Descricao Teste"
                    }
                }
            }
        }, JsonRequestBehavior.AllowGet);
If it’s a list for example:
var dados = new object[] 
{
    new object[] {"1", "NomeTeste 1", "Descricao Teste 1" },
    new object[] {"2", "NomeTeste 2", "Descricao Teste 2" }
};
return Json(new
{
    rows = new object[] {
        new {
            data =  dados
        }
    }
}, JsonRequestBehavior.AllowGet);
Classy:
public class Exemplo
{
    public int Id { get; set; }
    public String Nome { get; set; }
    public String Descricao { get; set; }
    public DateTime? DataCadatro { get; set; }
}   
IList<Exemplo> dados = new List<Exemplo>();
dados.Add(new Exemplo()
{
    Id = 1,
    Nome = "NomeTeste 1",
    Descricao = "Descricao 1"
});
dados.Add(new Exemplo()
{
    Id = 2,
    Nome = "NomeTeste 2",
    Descricao = "Descricao 2"
}); 
return Json(new
    {
        rows = new object[] {
            new {
                data =  dados.Select(x => new object[]{
                    x.Id.ToString(), x.Nome.ToString(), x.Descricao.ToString()
                })
            }
        }
    }, JsonRequestBehavior.AllowGet);

Forcing only the first list item:
return Json(new
    {
        rows = new object[] {
            new {
                data =  dados.Select(x => new object[]{
                    x.Id, x.Nome.ToString(), x.Descricao.ToString()
                })
                .FirstOrDefault()
            }
        }
    }, JsonRequestBehavior.AllowGet);

With the New Edition made the layout clearer:
IList<Exemplo> dados = new List<Exemplo>();
dados.Add(new Exemplo()
{
    Id = 1,
    Nome = "NomeTeste 1",
    Descricao = "Descricao 1"
});
dados.Add(new Exemplo()
{
    Id = 2,
    Nome = "NomeTeste 2",
    Descricao = "Descricao 2"
});
return Json(new
{
    rows = dados.Select(x => new 
            {
                x.Id, 
                Data = new object[] { 
                    x.Id, x.Nome.ToString(), x.Descricao.ToString()
                }                            
            })                                    
}, JsonRequestBehavior.AllowGet);

							
							
						 
You wanted the id to stay off the date?
– Diego Zanardo
ignore id, rsrs,I would like it to be exactly this way, without the use of "Property":"value",
– Rod