Bug 1587398 - Provide schema support for tags r=perftest-reviewers,octavian_negru,davehunt

Differential Revision: https://phabricator.services.mozilla.com/D53973

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Ionut Goldan 2019-11-22 07:51:07 +00:00
Родитель 732a55531c
Коммит ee1e094b81
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -116,6 +116,17 @@
"maxLength": 30, "maxLength": 30,
"type": "string" "type": "string"
}, },
"tags": {
"type": "array",
"title": "Free form tags, which ease the grouping & searching of performance tests",
"description": "Similar to extraOptions, except it does not break existing performance data series",
"items": {
"type": "string",
"pattern": "^[a-zA-Z0-9]{1,24}$"
},
"uniqueItems": true,
"maxItems": 14
},
"extraOptions": { "extraOptions": {
"type": "array", "type": "array",
"title": "Extra options used in running suite", "title": "Extra options used in running suite",