Page MenuHomeDevCentral
Paste P215

JenkinsPayloadAnalyzer.schema.json
ActivePublic

Authored by dereckson on Aug 20 2016, 18:13.
Tags
None
Referenced Files
F49593: JenkinsPayloadAnalyzer.schema.json
Aug 20 2016, 18:13
Subscribers
None
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"defaultGroup": {
"type": "string",
"default": "ci"
},
"groupsMapping": {
"type": "array",
"items": {
"type": "object",
"properties": {
"group": {
"type": "string"
},
"jobs": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"group",
"jobs"
]
}
},
"notifyOnlyOnFailure": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"defaultGroup",
"groupsMapping",
"notifyOnlyOnFailure"
]
}

Event Timeline

dereckson changed the title of this paste from untitled to JenkinsPayloadAnalyzer.schema.json.