{
    "title": "process class (volatile part)",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.processClass.ProcessClassV",
    "type": "object",
    "required": [
        "surveyDate",
        "path",
        "name",
        "numOfProcesses"
    ],
    "properties": {
        "surveyDate": {
            "description": "Date of the inventory data. Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ",
            "type": "string",
            "format": "date-time"
        },
        "path": {
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255
        },
        "name": {
            "type": "string"
        },
        "numOfProcesses": {
            "type": "integer",
            "minimum": 0
        },
        "processes": {
            "type": "array",
            "items": {
                "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?://.+$"
                    }
                }
            }
        },
        "configurationStatus": {
            "javaType": "com.sos.joc.model.common.ConfigurationState",
            "type": "object",
            "required": [
                "severity",
                "_text"
            ],
            "properties": {
                "severity": {
                    "description": "4=ok; 5=replacement_is_standing_by,removing_delayed; 2=error_in_configuration_file,changed_file_not_loaded,resource_is_missing",
                    "type": "integer"
                },
                "_text": {
                    "javaType": "com.sos.joc.model.common.ConfigurationStateText",
                    "type": "string",
                    "enum": [
                        "ERROR_IN_CONFIGURATION_FILE",
                        "CHANGED_FILE_NOT_LOADED",
                        "REMOVING_DELAYED",
                        "RESOURCE_IS_MISSING",
                        "REPLACEMENT_IS_STANDING_BY",
                        "OK"
                    ]
                },
                "message": {
                    "description": "contains e.g. error message",
                    "type": "string"
                }
            }
        }
    }
}