class Class

Extends any Class to include json_creatable? method.

def json_creatable?

should include the required data.
method _json_create_ that expects a hash as first parameter. The hash
from a serialised JSON string. The class has to implement a class
Returns true if this class can be used to create an instance
def json_creatable?
  respond_to?(:json_create)
end