{
    "title": "post notices",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "type": "object",
    "javaType": "com.sos.joc.model.board.NoticeIdsPerBoard",
    "required": [
        "noticeBoardPath"
    ],
    "properties": {
        "noticeBoardPath": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        },
        "noticeIds": {
            "type": "array",
            "uniqueItems": true,
            "items": {
                "type": "string",
                "pattern": "^[^<>]*$",
                "maxLength": 255,
                "minLength": 1
            }
        }
    },
    "additionalProperties": false
}