aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/build_stats/build_stats_schema_no_matrix.json
diff options
context:
space:
mode:
Diffstat (limited to 'tools/run_tests/build_stats/build_stats_schema_no_matrix.json')
-rw-r--r--tools/run_tests/build_stats/build_stats_schema_no_matrix.json49
1 files changed, 49 insertions, 0 deletions
diff --git a/tools/run_tests/build_stats/build_stats_schema_no_matrix.json b/tools/run_tests/build_stats/build_stats_schema_no_matrix.json
new file mode 100644
index 0000000000..eeb067d7a5
--- /dev/null
+++ b/tools/run_tests/build_stats/build_stats_schema_no_matrix.json
@@ -0,0 +1,49 @@
+[
+ {
+ "name": "build_number",
+ "type": "INTEGER",
+ "mode": "NULLABLE"
+ },
+ {
+ "name": "timestamp",
+ "type": "TIMESTAMP",
+ "mode": "NULLABLE"
+ },
+ {
+ "name": "duration",
+ "type": "FLOAT",
+ "mode": "NULLABLE"
+ },
+ {
+ "name": "pass_count",
+ "type": "INTEGER",
+ "mode": "NULLABLE"
+ },
+ {
+ "name": "failure_count",
+ "type": "INTEGER",
+ "mode": "NULLABLE"
+ },
+ {
+ "name": "no_report_files_found",
+ "type": "BOOLEAN",
+ "mode": "NULLABLE"
+ },
+ {
+ "name": "error",
+ "type": "RECORD",
+ "mode": "REPEATED",
+ "fields": [
+ {
+ "name": "description",
+ "type": "STRING",
+ "mode": "NULLABLE"
+ },
+ {
+ "name": "count",
+ "type": "INTEGER",
+ "mode": "NULLABLE"
+ }
+ ]
+ }
+]