{ "$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" ] }