Class: JSONSchemer::Draft202012::Vocab::Core::DynamicAnchor

Inherits:
Keyword
  • Object
show all
Defined in:
lib/json_schemer/draft202012/vocab/core.rb

Constant Summary

Constants included from Output

Output::FRAGMENT_ENCODE_REGEX

Instance Attribute Summary

Attributes inherited from Keyword

#parent, #parsed, #root, #value

Attributes included from Output

#keyword, #schema

Instance Method Summary collapse

Methods inherited from Keyword

#absolute_keyword_location, #error_key, #fetch, #initialize, #parsed_schema, #schema_pointer, #validate

Methods included from Output

#x_error

Constructor Details

This class inherits a constructor from JSONSchemer::Keyword

Instance Method Details

#parseObject



72
73
74
75
76
77
# File 'lib/json_schemer/draft202012/vocab/core.rb', line 72

def parse
  URI.join(schema.base_uri, "##{value}").tap do |uri|
    root.resources[:lexical][uri] = schema
    root.resources[:dynamic][uri] = schema
  end
end