private string GetTitle(Type type, JsonProperty memberProperty)
        {
            JsonContainerAttribute containerAttribute = JsonTypeReflector.GetCachedAttribute <JsonContainerAttribute>(type);

            if (!string.IsNullOrEmpty(containerAttribute?.Title))
            {
                return(containerAttribute.Title);
            }

            AttributeHelpers.GetDisplayName(type, memberProperty, out string displayName);
            return(displayName);
        }
        private string?GetTitle(Type type, JsonProperty?memberProperty)
        {
            JsonContainerAttribute?containerAttribute = ReflectionUtils.GetAttribute <JsonContainerAttribute>(type);

            if (!string.IsNullOrEmpty(containerAttribute?.Title))
            {
                return(containerAttribute !.Title);
            }

            AttributeHelpers.GetDisplayName(type, memberProperty, out string?displayName);
            return(displayName);
        }