{
    "title": "process",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.processClass.Process",
    "type": "object",
    "required": [
        "job",
        "taskId",
        "pid",
        "runningSince"
    ],
    "properties": {
        "job": {
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255
        },
        "taskId": {
            "type": "string"
        },
        "pid": {
            "type": "integer",
            "minimum": 0
        },
        "runningSince": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "agent": {
            "description": "url",
            "type": "string",
            "pattern": "^https?://.+$"
        }
    }
}