{
    "title": "Post Notice",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.controller.model.command.PostNotice",
    "type": "object",
    "extends": {
        "javaType": "com.sos.controller.model.command.DeleteNotice",
        "type": "object",
        "extends": {
            "javaType": "Command"
        },
        "required": [
            "boardPath",
            "noticeId"
        ],
        "propertyOrder": [
            "TYPE",
            "boardPath",
            "noticeId"
        ],
        "properties": {
            "boardPath": {
                "type": "string"
            },
            "noticeId": {
                "type": "string"
            }
        },
        "additionalProperties": false
    },
    "properties": {
        "endOfLife": {
            "type": "string"
        }
    },
    "additionalProperties": false
}