зеркало из https://github.com/mozilla/treeherder.git
19 строки
420 B
JSON
19 строки
420 B
JSON
{
|
|
"title": "PerfSheriffBot's schema for storing logs",
|
|
"description": "Used to store the outcome of PerfSheriffBot actions (i.e. backfill, retrigger)",
|
|
"type": "object",
|
|
"properties": {
|
|
"action": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 20
|
|
},
|
|
"outcome": {
|
|
"type": "string",
|
|
"minLength": 1,
|
|
"maxLength": 100
|
|
}
|
|
},
|
|
"required": ["action", "outcome"]
|
|
}
|