{
    "title": "properties",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.Properties",
    "type": "object",
    "required": [
        "deliveryDate",
        "forceCommentsForAuditLog",
        "comments",
        "showViews",
        "securityLevel",
        "defaultProfileAccount",
        "apiVersion",
        "inventoryVersion",
        "jocVersion"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "title": {
            "type": "string"
        },
        "securityLevel": {
            "javaType": "com.sos.joc.model.common.JocSecurityLevel",
            "type": "string",
            "enum": [
                "LOW",
                "MEDIUM",
                "HIGH"
            ]
        },
        "defaultProfileAccount": {
            "type": "string"
        },
        "apiVersion": {
            "type": "string"
        },
        "inventoryVersion": {
            "type": "string"
        },
        "forceCommentsForAuditLog": {
            "type": "boolean",
            "default": false
        },
        "comments": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "copy": {
            "javaType": "com.sos.joc.model.SuffixPrefix",
            "type": "object",
            "properties": {
                "suffix": {
                    "type": "string"
                },
                "prefix": {
                    "type": "string"
                }
            }
        },
        "restore": {
            "javaType": "com.sos.joc.model.SuffixPrefix",
            "type": "object",
            "properties": {
                "suffix": {
                    "type": "string"
                },
                "prefix": {
                    "type": "string"
                }
            }
        },
        "import": {
            "javaType": "com.sos.joc.model.SuffixPrefix",
            "type": "object",
            "properties": {
                "suffix": {
                    "type": "string"
                },
                "prefix": {
                    "type": "string"
                }
            }
        },
        "showViews": {
            "javaType": "com.sos.joc.model.ShowViewProperties",
            "type": "object",
            "properties": {
                "dashboard": {
                    "type": "boolean"
                },
                "dailyPlan": {
                    "type": "boolean"
                },
                "workflows": {
                    "type": "boolean"
                },
                "orders": {
                    "type": "boolean"
                },
                "jobStreams": {
                    "type": "boolean"
                },
                "fileTransfers": {
                    "type": "boolean"
                },
                "resources": {
                    "type": "boolean"
                },
                "history": {
                    "type": "boolean"
                },
                "auditLog": {
                    "type": "boolean"
                },
                "conditions": {
                    "type": "boolean"
                },
                "configuration": {
                    "type": "boolean"
                },
                "monitor": {
                    "type": "boolean"
                }
            }
        },
        "welcomeDoNotRemindMe": {
            "type": "boolean",
            "default": false
        },
        "welcomeGotIt": {
            "type": "boolean",
            "default": false
        },
        "clusterLicense": {
            "type": "boolean",
            "default": false
        },
        "licenseValidFrom": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "licenseValidUntil": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "licenseType": {
            "javaType": "com.sos.joc.model.joc.LicenseType",
            "type": "string",
            "enum": [
                "COMMERCIAL",
                "OPENSOURCE"
            ]
        }
    }
}