ASP.NET Core 3.1 API : Adding SCIM Media Type to JSON Formatter

On a recent project I worked on creating a SCIM (rfc 7642, 7643, 7644) provider using ASP.NET Core. The SCIM standard uses its own media type of application/scim+json by default. So I had to figure out how to add the scim media type to the existing json formatter. In the process I ran into several …