{
    "title": "xmleditor store configuration in",
    "id": "schemas/xmleditor/store/store-configuration-schema",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.xmleditor.store.StoreConfiguration",
    "type": "object",
    "description": "id, name and schema only for OTHER",
    "required": [
        "jobschedulerId",
        "objectType",
        "configuration"
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string"
        },
        "objectType": {
            "id": "schemas/xmleditor/common/object-type-schema",
            "javaType": "com.sos.joc.model.xmleditor.common.ObjectType",
            "type": "string",
            "enum": [
                "YADE",
                "NOTIFICATION",
                "OTHER"
            ]
        },
        "configuration": {
            "type": "string"
        },
        "id": {
            "type": "integer"
        },
        "name": {
            "type": "string"
        },
        "schema": {
            "type": "string"
        }
    }
}