{
    "title": "PostNotice",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.history.order.notice.PostNotice",
    "type": "object",
    "extends": {
        "javaType": "com.sos.joc.model.history.order.notice.BaseNotice",
        "type": "object",
        "required": [
            "boardName",
            "id"
        ],
        "properties": {
            "boardName": {
                "type": "string"
            },
            "id": {
                "type": "string"
            }
        },
        "additionalProperties": false
    },
    "required": [
        "boardName",
        "id",
        "endOfLife"
    ],
    "properties": {
        "endOfLife": {
            "type": "string"
        }
    },
    "additionalProperties": false
}