private string typeFromLogicalModelCanonical(ITypeSerializationInfo info)
        {
            var type = info.GetTypeName();
            var pos  = type.LastIndexOf('/'); // Match the "raw" type name from the complete type name of the logical model type (absolute url)

            return(pos > -1 ? type.Substring(pos + 1) : type);
        }