{
  "routes": [
    {
      "method": "GET",
      "path": "/",
      "handler": "navigation.get",
      "config": {
        "policies": []
      }
    },
    {
      "method": "POST",
      "path": "/",
      "handler": "navigation.post",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/config",
      "handler": "navigation.config",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/:id",
      "handler": "navigation.getById",
      "config": {
        "policies": []
      }
    },
    {
      "method": "PUT",
      "path": "/:id",
      "handler": "navigation.put",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/render/:idOrSlug",
      "handler": "navigation.render",
      "config": {
        "policies": []
      }
    },
    {
      "method": "GET",
      "path": "/render/:idOrSlug/:childUIKey",
      "handler": "navigation.renderChild",
      "config": {
        "policies": []
      }
    }
  ]
}
