{
  "routes": [
    {
      "method": "GET",
      "path": "/models",
      "handler": "ContentManager.models",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/explorer/:model",
      "handler": "ContentManager.find",
      "config": {
        "policies": ["routing"]
      }
    },
    {
      "method": "GET",
      "path": "/explorer/:model/count",
      "handler": "ContentManager.count",
      "config": {
        "policies": ["routing"]
      }
    },
    {
      "method": "PUT",
      "path": "/models",
      "handler": "ContentManager.updateSettings",
      "config": {
        "policies": ["routing"]
      }
    },
    {
      "method": "GET",
      "path": "/explorer/:model/:id",
      "handler": "ContentManager.findOne",
      "config": {
        "policies": ["routing"]
      }
    },{
      "method": "POST",
      "path": "/explorer/:model",
      "handler": "ContentManager.create",
      "config": {
        "policies": ["routing"]
      }
    },
    {
      "method": "PUT",
      "path": "/explorer/:model/:id",
      "handler": "ContentManager.update",
      "config": {
        "policies": ["routing"]
      }
    },
    {
      "method": "DELETE",
      "path": "/explorer/deleteAll/:model",
      "handler": "ContentManager.deleteAll",
      "config": {
        "policies": ["routing"]
      }
    },
    {
      "method": "DELETE",
      "path": "/explorer/:model/:id",
      "handler": "ContentManager.delete",
      "config": {
        "policies": ["routing"]
      }
    }
  ]
}
