{
    "title": "notice board Edit configuration",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.inventory.board.BoardEdit",
    "type": "object",
    "extends": {
        "javaType": "com.sos.joc.model.inventory.ConfigurationObject"
    },
    "properties": {
        "configuration": {
            "javaType": "com.sos.inventory.model.board.Board",
            "type": "object",
            "javaInterfaces": [
                "com.sos.joc.model.common.IConfigurationObject",
                "com.sos.joc.model.common.IDeployObject",
                "com.sos.inventory.model.common.IInventoryObject"
            ],
            "required": [
                "postOrderToNoticeId",
                "expectOrderToNoticeId",
                "endOfLife"
            ],
            "propertyOrder": [
                "TYPE",
                "version",
                "postOrderToNoticeId",
                "endOfLife",
                "expectOrderToNoticeId",
                "title",
                "documentationName"
            ],
            "description": "deploy object with fixed property 'TYPE':'Board'",
            "properties": {
                "TYPE": {
                    "javaType": "com.sos.inventory.model.deploy.DeployType",
                    "type": "string",
                    "enum": [
                        "Workflow",
                        "JobClass",
                        "Lock",
                        "FileWatch",
                        "JobResource",
                        "Board"
                    ],
                    "javaEnumNames": [
                        "Workflow",
                        "JobClass",
                        "Lock",
                        "FileWatch",
                        "JobResource",
                        "Board"
                    ],
                    "default": "Workflow"
                },
                "postOrderToNoticeId": {
                    "description": "Expression that returns a NoticeId for the PostNotice statement.",
                    "alias": "toNotice",
                    "type": "string"
                },
                "endOfLife": {
                    "description": "Expression that returns for the PostNotice statement the time until when the note should be valid, expressed as number of milliseconds since 1970-01-01, 0 o'clock, UTC. Then JS7 will delete the note.",
                    "type": "string"
                },
                "expectOrderToNoticeId": {
                    "description": "Expression that returns a NoticeId for the ExpectNotice statement.",
                    "alias": "readingOrderToNoticeId",
                    "type": "string"
                },
                "version": {
                    "description": "inventory repository version",
                    "type": "string",
                    "pattern": "[0-9]+\\.[0-9]+\\.[0-9]+",
                    "default": "1.1.0",
                    "maxLength": 10
                },
                "title": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                },
                "documentationName": {
                    "type": "string",
                    "pattern": "^[^<>]*$",
                    "maxLength": 255
                }
            },
            "additionalProperties": false
        }
    }
}