Can I use nswag but providing my own json schemas for the data types? How do I do this, there are multiple files? I am also attempting to use embedded resources as the source from a shared library. Using .net framework.
Tried using type-mapper but references kind of broke swagger gui https://github.com/RicoSuter/NJsonSchema/wiki/Type-Mappers
settings.GeneratorSettings.TypeMappers.Add(new NJsonSchema.Generation.TypeMappers.ObjectTypeMapper(typeof(OutputRoot), OutputRootSchema));
If this is correct way, where can I read more about it & how to troubleshoot it.