Module: JSI::Schema::BigMoneyId
Overview
extends any schema which uses the keyword '$id' to identify its canonical URI
Instance Method Summary collapse
-
#id ⇒ #to_str?
the contents of a $id keyword whose value is a string, or nil.
Instance Method Details
#id ⇒ #to_str?
the contents of a $id keyword whose value is a string, or nil
36 37 38 39 40 41 42 |
# File 'lib/jsi/schema.rb', line 36 def id if keyword?('$id') && schema_content['$id'].respond_to?(:to_str) schema_content['$id'] else nil end end |