{
    "title": "agent",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.report.Agent",
    "type": "object",
    "required": [
        "agent",
        "cause",
        "numOfSuccessfulTasks",
        "numOfJobs"
    ],
    "properties": {
        "controllerId": {
            "type": "string"
        },
        "agent": {
            "description": "Url of an Agent",
            "type": "string",
            "pattern": "https?://.+"
        },
        "numOfSuccessfulTasks": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        },
        "numOfJobs": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        }
    }
}