{
    "title": "environment",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "javaType": "com.sos.joc.model.joe.job.EnviromentVariables",
    "xmlElement": "environment",
    "properties": {
        "variables": {
            "type": "array",
            "xmlElement": "variable",
            "items": {
                "type": "object",
                "javaType": "com.sos.joc.model.joe.job.EnviromentVariable",
                "xmlElement": "variable",
                "properties": {
                    "name": {
                        "type": "string"
                    },
                    "value": {
                        "type": "string"
                    }
                }
            }
        }
    }
}