From ac5eb4e8feb4859eee79c2b526aaf41a00a493a0 Mon Sep 17 00:00:00 2001 From: Gopar Date: Tue, 4 Aug 2026 14:54:12 -0700 Subject: [PATCH 1/4] [bug-1981626] Add new field denoting ordering of trial runs --- schemas/performance-artifact.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/schemas/performance-artifact.json b/schemas/performance-artifact.json index aa0c31cb402..996cfa482f1 100644 --- a/schemas/performance-artifact.json +++ b/schemas/performance-artifact.json @@ -202,6 +202,11 @@ "title": "Lower is better", "type": "boolean" }, + "trialsOrderedByRun": { + "description": "Whether the replicates list is ordered by trial run (1st value is 1st trial, 2nd value is 2nd trial, etc.)", + "title": "Trials ordered by run", + "type": "boolean" + }, "shouldAlert": { "description": "Whether we should alert on this suite (overrides default behaviour)", "title": "Should alert", From 2f9f2caf2a2ec396de8e10d1e599ce39a35f8420 Mon Sep 17 00:00:00 2001 From: Gopar Date: Mon, 10 Aug 2026 10:12:03 -0700 Subject: [PATCH 2/4] [bug-1981626] Rename field to be more succinct --- schemas/performance-artifact.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/performance-artifact.json b/schemas/performance-artifact.json index 996cfa482f1..51dd2d55516 100644 --- a/schemas/performance-artifact.json +++ b/schemas/performance-artifact.json @@ -202,7 +202,7 @@ "title": "Lower is better", "type": "boolean" }, - "trialsOrderedByRun": { + "orderedTrials": { "description": "Whether the replicates list is ordered by trial run (1st value is 1st trial, 2nd value is 2nd trial, etc.)", "title": "Trials ordered by run", "type": "boolean" From 31e71db8ea3e9d820ae73cf07afa168df18711f3 Mon Sep 17 00:00:00 2001 From: Gopar Date: Mon, 10 Aug 2026 10:12:54 -0700 Subject: [PATCH 3/4] [bug-1981626] Add field to subtest schema --- schemas/performance-artifact.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/schemas/performance-artifact.json b/schemas/performance-artifact.json index 51dd2d55516..6b8e4bfb157 100644 --- a/schemas/performance-artifact.json +++ b/schemas/performance-artifact.json @@ -87,6 +87,11 @@ "title": "Lower is better", "type": "boolean" }, + "orderedTrials": { + "description": "Whether the replicates list is ordered by trial run (1st value is 1st trial, 2nd value is 2nd trial, etc.)", + "title": "Trials ordered by run", + "type": "boolean" + }, "shouldAlert": { "description": "Whether we should alert", "title": "Should alert", From 51de049565c9ba3b00c9666855fb479df600f75a Mon Sep 17 00:00:00 2001 From: Gopar Date: Thu, 20 Aug 2026 10:12:10 -0700 Subject: [PATCH 4/4] [bug-1981626] Update doc string for new field --- schemas/performance-artifact.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/schemas/performance-artifact.json b/schemas/performance-artifact.json index 6b8e4bfb157..537c1b71021 100644 --- a/schemas/performance-artifact.json +++ b/schemas/performance-artifact.json @@ -88,8 +88,8 @@ "type": "boolean" }, "orderedTrials": { - "description": "Whether the replicates list is ordered by trial run (1st value is 1st trial, 2nd value is 2nd trial, etc.)", - "title": "Trials ordered by run", + "description": "Whether the replicates list is ordered (default is by trial run).", + "title": "Trials ordered", "type": "boolean" }, "shouldAlert": { @@ -208,8 +208,8 @@ "type": "boolean" }, "orderedTrials": { - "description": "Whether the replicates list is ordered by trial run (1st value is 1st trial, 2nd value is 2nd trial, etc.)", - "title": "Trials ordered by run", + "description": "Whether the replicates list is ordered (default is by trial run).", + "title": "Trials ordered", "type": "boolean" }, "shouldAlert": {