Hi, actually I'm implementing a rest api with a path like /api/users/{groupid}.{departmentid}.{level}
users have this composite id to identify them. Calling operations are working but I cannot define the the path in swagger. I get a:
Semantic error at paths./api/users/{groupid}.{departmentid}.{level}
Partial path templating is not allowed.
I'm using swagger annotations to define the api and in the configuration I'm using enableUrlTemplating(true) too.