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