Module: JSI::Schema::OldId
- Included in:
- Draft04
- Defined in:
- lib/jsi/schema.rb
Overview
extends any schema which uses the keyword 'id' to identify its canonical URI
Instance Method Summary collapse
-
#id ⇒ #to_str?
the contents of an
id
keyword whose value is a string, or nil.
Instance Method Details
#id ⇒ #to_str?
the contents of an id
keyword whose value is a string, or nil
54 55 56 57 58 59 60 |
# File 'lib/jsi/schema.rb', line 54 def id if keyword?('id') && schema_content['id'].respond_to?(:to_str) schema_content['id'] else nil end end |