Class: JSON::Schema::ExtendsAttribute

Inherits:
Attribute
  • Object
show all
Defined in:
lib/json-schema/attributes/extends.rb

Class Method Summary collapse

Methods inherited from Attribute

build_fragment, validation_error

Class Method Details

.validate(current_schema, data, fragments, validator, options = {}) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/json-schema/attributes/extends.rb', line 4

def self.validate(current_schema, data, fragments, validator, options = {})
  schemas = current_schema.schema['extends']
  schemas = [schemas] if !schemas.is_a?(Array)
  schemas.each do |s|
    schema = JSON::Schema.new(s,current_schema.uri,validator)
    schema.validate(data, fragments, options)
  end
end