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
#[], #extension, #initialize, #inspect, #node_at, #render_markdown
Instance Method Details
#callbacks ⇒ Map<String, Callback>
50
51
52
|
# File 'lib/openapi3_parser/node/components.rb', line 50
def callbacks
node_data["callbacks"]
end
|
#examples ⇒ Map<String, Example>
25
26
27
|
# File 'lib/openapi3_parser/node/components.rb', line 25
def examples
node_data["examples"]
end
|
35
36
37
|
# File 'lib/openapi3_parser/node/components.rb', line 35
def
node_data["headers"]
end
|
#links ⇒ Map<String, Link>
45
46
47
|
# File 'lib/openapi3_parser/node/components.rb', line 45
def links
node_data["links"]
end
|
20
21
22
|
# File 'lib/openapi3_parser/node/components.rb', line 20
def parameters
node_data["parameters"]
end
|
30
31
32
|
# File 'lib/openapi3_parser/node/components.rb', line 30
def request_bodies
node_data["requestBodies"]
end
|
#responses ⇒ Map<String, Response>
15
16
17
|
# File 'lib/openapi3_parser/node/components.rb', line 15
def responses
node_data["responses"]
end
|
#schemas ⇒ Map<String, Schema>
10
11
12
|
# File 'lib/openapi3_parser/node/components.rb', line 10
def schemas
node_data["schemas"]
end
|
40
41
42
|
# File 'lib/openapi3_parser/node/components.rb', line 40
def security_schemes
node_data["securitySchemes"]
end
|