class SchemaMatcher::ExtendedSchema

Constants

SCHEMA_URI

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/schema_matcher/extended_schema.rb, line 7
def initialize
  super
  @attributes['type'] = ExtendedTypeAttribute
  @attributes['$ref'] = ExtendedRefAttribute
  @uri = URI.parse(SCHEMA_URI)
  @names = ['draft3-custom', SCHEMA_URI]
end