build_stats_schema_no_matrix.json 798 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [
  2. {
  3. "name": "build_number",
  4. "type": "INTEGER",
  5. "mode": "NULLABLE"
  6. },
  7. {
  8. "name": "timestamp",
  9. "type": "TIMESTAMP",
  10. "mode": "NULLABLE"
  11. },
  12. {
  13. "name": "duration",
  14. "type": "FLOAT",
  15. "mode": "NULLABLE"
  16. },
  17. {
  18. "name": "pass_count",
  19. "type": "INTEGER",
  20. "mode": "NULLABLE"
  21. },
  22. {
  23. "name": "failure_count",
  24. "type": "INTEGER",
  25. "mode": "NULLABLE"
  26. },
  27. {
  28. "name": "no_report_files_found",
  29. "type": "BOOLEAN",
  30. "mode": "NULLABLE"
  31. },
  32. {
  33. "name": "error",
  34. "type": "RECORD",
  35. "mode": "REPEATED",
  36. "fields": [
  37. {
  38. "name": "description",
  39. "type": "STRING",
  40. "mode": "NULLABLE"
  41. },
  42. {
  43. "name": "count",
  44. "type": "INTEGER",
  45. "mode": "NULLABLE"
  46. }
  47. ]
  48. }
  49. ]