{
  "routes": [
    {
      "method": "GET",
      "path": "/customers",
      "handler": "customers.find",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/customers/count",
      "handler": "customers.count",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/customers/:id",
      "handler": "customers.findOne",
      "config": {
        "policies": []
      }
    },
    {
      "method": "POST",
      "path": "/customers",
      "handler": "customers.create",
      "config": {
        "policies": []
      }
    },
    {
      "method": "PUT",
      "path": "/customers/:id",
      "handler": "customers.update",
      "config": {
        "policies": []
      }
    },
    {
      "method": "DELETE",
      "path": "/customers/:id",
      "handler": "customers.delete",
      "config": {
        "policies": []
      }
    }
  ]
}
