{
  "routes": [
    {
      "method": "GET",
      "path": "/pages/:id",
      "handler": "page.findOne",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/items/:id",
      "handler": "item.findOne",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/flat-pages",
      "handler": "page.flatFind",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/pages",
      "handler": "page.find",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/flat-items",
      "handler": "item.flatFind",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/items",
      "handler": "item.find",
      "config": {
        "policies": []
      }
    },
    {
      "method": "PUT",
      "path": "/update-items",
      "handler": "item.updateItems",
      "config": {
        "policies": []
      }
    }
  ]
}
