A JSON Boolean schema member.
Methods
- V
Instance Public methods
validate( data, path = '' )
Link
Check if data is a valid Boolean and return a Hoodoo::Errors instance.
Source: show
# File lib/hoodoo/presenters/types/boolean.rb, line 10 def validate( data, path = '' ) errors = super( data, path ) return errors if errors.has_errors? || ( ! @required && data.nil? ) unless !! data == data errors.add_error( 'generic.invalid_boolean', :message => "Field `#{ full_path( path ) }` is an invalid boolean", :reference => { :field_name => full_path( path ) } ) end errors end