Class: JSON::Schema::EnumAttribute
- Defined in:
- lib/json-schema/attributes/enum.rb
Class Method Summary collapse
Methods inherited from Attribute
build_fragment, validation_error, validation_errors
Class Method Details
.validate(current_schema, data, fragments, processor, validator, options = {}) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/json-schema/attributes/enum.rb', line 4 def self.validate(current_schema, data, fragments, processor, validator, = {}) if !current_schema.schema['enum'].include?(data) = "The property '#{build_fragment(fragments)}' value #{data.inspect} did not match one of the following values:" current_schema.schema['enum'].each {|val| if val.is_a?(NilClass) += " null," elsif val.is_a?(Array) += " (array)," elsif val.is_a?(Hash) += " (object)," else += " #{val.to_s}," end } .chop! validation_error(processor, , fragments, current_schema, self, [:record_errors]) end end |