{
    "title": "folder content",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.descriptor.common.ResponseFolder",
    "type": "object",
    "required": [
        "deliveryDate",
        "path"
    ],
    "properties": {
        "deliveryDate": {
            "description": "Value is UTC timestamp in ISO 8601 YYYY-MM-DDThh:mm:ss.sZ or empty",
            "type": "string",
            "format": "date-time"
        },
        "path": {
            "description": "absolute path of an object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\\\<>?:\"|*]+)+)$",
            "maxLength": 255,
            "minLength": 1
        },
        "deploymentDescriptors": {
            "type": "array",
            "items": {
                "javaType": "com.sos.joc.model.descriptor.common.ResponseFolderItem",
                "type": "object",
                "required": [
                    "name",
                    "path",
                    "objectType"
                ],
                "properties": {
                    "path": {
                        "description": "absolute path of an object.",
                        "type": "string",
                        "pattern": "^(/|(/[^/\\\\<>?:\"|*]+)+)$",
                        "maxLength": 255,
                        "minLength": 1
                    },
                    "name": {
                        "type": "string",
                        "pattern": "^[^<>]*$",
                        "maxLength": 255
                    },
                    "title": {
                        "type": "string",
                        "pattern": "^[^<>]*$",
                        "maxLength": 255
                    },
                    "valid": {
                        "type": "boolean"
                    },
                    "deleted": {
                        "type": "boolean"
                    }
                }
            },
            "uniqueItems": true
        }
    }
}