{
    "title": "agent report",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.agent.AgentReport",
    "type": "object",
    "required": [
        "agentId",
        "url",
        "numOfSuccessfulTasks",
        "numOfJobs"
    ],
    "properties": {
        "controllerId": {
            "type": "string"
        },
        "agentId": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        },
        "url": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        },
        "numOfSuccessfulTasks": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        },
        "numOfJobs": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        }
    },
    "additionalProperties": false
}