{
    "title": "ExportFile",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.publish.ExportFile",
    "type": "object",
    "required": [
        "filename",
        "format"
    ],
    "properties": {
        "filename": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 255
        },
        "format": {
            "javaType": "com.sos.joc.model.publish.ArchiveFormat",
            "type": "string",
            "enum": [
                "ZIP",
                "TAR_GZ"
            ],
            "default": "ZIP"
        }
    }
}