{
    "title": "Git Commnad Response",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.publish.git.commands.GitCommandResponse",
    "type": "object",
    "properties": {
        "command": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "stdOut": {
            "type": "string"
        },
        "stdErr": {
            "type": "string"
        },
        "exitCode": {
            "type": "integer"
        }
    }
}