{
    "title": "board",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "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"
    ],
    "propertyOrder": [
        "TYPE",
        "version",
        "boardType",
        "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"
        },
        "boardType": {
            "javaType": "com.sos.inventory.model.board.BoardType",
            "type": "string",
            "enum": [
                "GLOBAL",
                "PLANNABLE"
            ],
            "default": "GLOBAL"
        },
        "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.7.1",
            "maxLength": 10
        },
        "title": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "documentationName": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        }
    },
    "additionalProperties": false
}