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