{
    "title": "set display preferences",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.note.DisplayPreferencesRequest",
    "type": "object",
    "extends": {
        "javaType": "com.sos.joc.model.note.common.NoteIdentifier",
        "type": "object",
        "required": [
            "name",
            "objectType"
        ],
        "properties": {
            "name": {
                "type": "string",
                "pattern": "^[^<>]*$",
                "maxLength": 255,
                "minLength": 1
            },
            "objectType": {
                "javaType": "com.sos.joc.model.inventory.common.ConfigurationType",
                "type": "string",
                "enum": [
                    "WORKFLOW",
                    "JOBCLASS",
                    "JOBRESOURCE",
                    "LOCK",
                    "NOTICEBOARD",
                    "FILEORDERSOURCE",
                    "WORKINGDAYSCALENDAR",
                    "NONWORKINGDAYSCALENDAR",
                    "SCHEDULE",
                    "INCLUDESCRIPT",
                    "JOBTEMPLATE",
                    "REPORT"
                ]
            }
        },
        "additionalProperties": false
    },
    "required": [
        "name",
        "objectType",
        "displayPreferences"
    ],
    "properties": {
        "displayPreferences": {
            "javaType": "com.sos.joc.model.note.common.DisplayPreferences",
            "type": "object",
            "properties": {
                "width": {
                    "type": "integer",
                    "minimum": 0
                },
                "height": {
                    "type": "integer",
                    "minimum": 0
                }
            },
            "additionalProperties": false
        }
    },
    "additionalProperties": false
}