It is an unofficial mapping structure based on dynamic configuration prepared for AutoMapper.
dotnet test
// Configuration json.
string configJson = "";
var mapperConfiguration = new MapperConfiguration(conf =>
{
MappingConfig config = JsonSerializer.Deserialize<MappingConfig>(configJson)!;
conf.AddProfile(new ConfigurationProfile(config));
});
var mapper = mapperConfiguration.CreateMapper();