{
    "title": "joe object status",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.joe.common.JoeObjectStatus",
    "type": "object",
    "description": "Describes the situation live/draft",
    "properties": {
        "message": {
            "javaType": "com.sos.joc.model.joe.common.JoeMessage",
            "type": "object",
            "properties": {
                "messageText": {
                    "type": "string"
                },
                "_messageCode": {
                    "type": "string"
                }
            }
        },
        "versionState": {
            "javaType": "com.sos.joc.model.joe.common.VersionStateText",
            "type": "string",
            "enum": [
                "LIVE_IS_NEWER",
                "DRAFT_IS_NEWER",
                "LIVE_NOT_EXIST",
                "DRAFT_NOT_EXIST",
                "NO_CONFIGURATION_EXIST"
            ]
        },
        "deployed": {
            "type": "boolean"
        }
    }
}