class RootExtendedSchema

Registers custom dependencies for Draft-4. This used when evaluating the protocol schema snowly/schemas/snowplow_protocol.json

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/snowly/extensions/custom_dependencies.rb, line 48
def initialize
  super
  extend_schema_definition("http://json-schema.org/draft-04/schema#")
  @attributes["custom_dependencies"] = CustomDependenciesAttribute
  @uri = URI.parse("http://json-schema.org/draft-04/schema")
end