Class: Jsapi::Meta::Response::Reference
- Inherits:
-
BaseReference
- Object
- Base
- BaseReference
- Jsapi::Meta::Response::Reference
- Defined in:
- lib/jsapi/meta/response/reference.rb
Instance Method Summary collapse
-
#to_openapi(version) ⇒ Object
Returns a hash representing the OpenAPI reference object.
Methods inherited from BaseReference
lookup_method_name, #ref, #reference?, #resolve
Methods inherited from Base
#initialize, #inspect, #reference?, #resolve
Methods included from Attributes::ClassMethods
Constructor Details
This class inherits a constructor from Jsapi::Meta::Base
Instance Method Details
#to_openapi(version) ⇒ Object
Returns a hash representing the OpenAPI reference object.
8 9 10 11 12 13 |
# File 'lib/jsapi/meta/response/reference.rb', line 8 def to_openapi(version, *) version = OpenAPI::Version.from(version) path = version.major == 2 ? 'responses' : 'components/responses' { '$ref': "#/#{path}/#{ref}" } end |