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