{
    "title": "folder",
    "id": "schemas/tree/tree",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.tree.Tree",
    "type": "object",
    "properties": {
        "path": {
            "id": "schemas/common/path",
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "/([^/]+/)*[^/]+"
        },
        "name": {
            "type": "string"
        },
        "folders": {
            "type": "array",
            "items": {
                "description": "tree-schema.json"
            }
        }
    },
    "required": [
        "path",
        "name"
    ]
}