{
    "title": "properties",
    "id": "schemas/joc/properties",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.Properties",
    "type": "object",
    "required": [
        "deliveryDate",
        "forceCommentsForAuditLog",
        "comments",
        "showViews"
    ],
    "properties": {
        "deliveryDate": {
            "id": "schemas/common/deliveryDate",
            "description": "Current date of the JOC server/REST service. Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ",
            "type": "string",
            "format": "date-time"
        },
        "forceCommentsForAuditLog": {
            "type": "boolean",
            "default": false
        },
        "comments": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "showViews": {
            "javaType": "com.sos.joc.model.ShowViewProperties",
            "type": "object",
            "properties": {
                "dashboard": {
                    "type": "boolean"
                },
                "dailyPlan": {
                    "type": "boolean"
                },
                "jobChains": {
                    "type": "boolean"
                },
                "orders": {
                    "type": "boolean"
                },
                "jobs": {
                    "type": "boolean"
                },
                "fileTransfers": {
                    "type": "boolean"
                },
                "resources": {
                    "type": "boolean"
                },
                "history": {
                    "type": "boolean"
                },
                "auditLog": {
                    "type": "boolean"
                },
                "conditions": {
                    "type": "boolean"
                }
            }
        }
    }
}