Class: Openapi3Parser::Node::Components
- Inherits:
-
Object
- Object
- Object
- Openapi3Parser::Node::Components
show all
- Defined in:
- lib/openapi3_parser/node/components.rb
Overview
Instance Attribute Summary
Attributes inherited from Object
#node_context, #node_data
Instance Method Summary
collapse
Methods inherited from Object
#==, #[], #each, #extension, #initialize, #inspect, #node_at, #render_markdown, #values
Instance Method Details
#callbacks ⇒ Map<String, Callback>
50
51
52
|
# File 'lib/openapi3_parser/node/components.rb', line 50
def callbacks
self["callbacks"]
end
|
#examples ⇒ Map<String, Example>
25
26
27
|
# File 'lib/openapi3_parser/node/components.rb', line 25
def examples
self["examples"]
end
|
35
36
37
|
# File 'lib/openapi3_parser/node/components.rb', line 35
def
self["headers"]
end
|
#links ⇒ Map<String, Link>
45
46
47
|
# File 'lib/openapi3_parser/node/components.rb', line 45
def links
self["links"]
end
|
20
21
22
|
# File 'lib/openapi3_parser/node/components.rb', line 20
def parameters
self["parameters"]
end
|
30
31
32
|
# File 'lib/openapi3_parser/node/components.rb', line 30
def request_bodies
self["requestBodies"]
end
|
#responses ⇒ Map<String, Response>
15
16
17
|
# File 'lib/openapi3_parser/node/components.rb', line 15
def responses
self["responses"]
end
|
#schemas ⇒ Map<String, Schema>
10
11
12
|
# File 'lib/openapi3_parser/node/components.rb', line 10
def schemas
self["schemas"]
end
|
40
41
42
|
# File 'lib/openapi3_parser/node/components.rb', line 40
def security_schemes
self["securitySchemes"]
end
|