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