Class: JSON::Schema::NotAttribute

Inherits:
Attribute
  • Object
show all
Defined in:
lib/json-schema/attributes/not.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
# File 'lib/json-schema/attributes/not.rb', line 4

def self.validate(current_schema, data, fragments, processor, validator, options = {})

  schema = JSON::Schema.new(current_schema.schema['not'],current_schema.uri,validator)
  failed = true
  begin
    schema.validate(data,fragments,processor,options)
    message = "The property '#{build_fragment(fragments)}' of type #{data.class} matched the disallowed schema"
    failed = false
  rescue
    # Yay, we failed validation
  end

  unless failed
    validation_error(processor, message, fragments, current_schema, self, options[:record_errors])
  end
end