From fd9c71ee63550f883e4b8fe9600d3ef1cf81b971 Mon Sep 17 00:00:00 2001 From: Gregory Mierzwinski Date: Tue, 21 Oct 2025 10:49:34 -0400 Subject: [PATCH] Bug 1995563 - Add a limit to the suite/test names in the perf schema. --- schemas/performance-artifact.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/schemas/performance-artifact.json b/schemas/performance-artifact.json index 00fde2f7186..0357490d7b0 100644 --- a/schemas/performance-artifact.json +++ b/schemas/performance-artifact.json @@ -43,7 +43,8 @@ "properties": { "name": { "title": "Subtest name", - "type": "string" + "type": "string", + "maxLength": 80 }, "publicName": { "title": "Public subtest name", @@ -115,7 +116,8 @@ "properties": { "name": { "title": "Suite name", - "type": "string" + "type": "string", + "maxLength": 80 }, "publicName": { "title": "Public suite name",