Method validateThing(..) passing wrong argument to validate(..)

Summary

Validators validateThing<T>(instance: T) method is not working properly, because of the internal function call to validate(any,parameter: string). Where as parameter needs to be the name of the schema, but is passed the camel-cased name of the type, which excludes the required SC-prefix. Thus failing the validation, when using validateThing

Steps to reproduce

Using the validateThing<T>(instance: T) in code.

What is the current bug behavior?

validateThing passes <TypeName> to validate.

What is the expected correct behavior?

validateThing passes SC<TypeName> to validate.