I'm using swagger with .net core and I'm wondering if it is possible to split 2 or more sets of swagger docs that is accessible via different urls. Not talking about versioning here.
Take for example if I have API that is for mobile app, web app, another for my clients. I want to separate them out respectively and also add authorization for mobile and web api only, but not client. I have this idea to separate the respective api to areas but I still have no idea how to split it for the swagger docs.
Only way I know I can get the same result is by splitting it to separate projects.
Any other ideas to go around this are very much welcomed. Thank you.