mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-09 20:47:44 +00:00
20 lines
486 B
Go
20 lines
486 B
Go
package v3
|
|
|
|
import (
|
|
"gopkg.in/yaml.v3"
|
|
"net/http"
|
|
)
|
|
|
|
type Components struct {
|
|
Node *yaml.Node
|
|
Schemas map[string]Schema
|
|
Responses map[string]Response
|
|
Parameters map[string]Parameter
|
|
Examples map[string]Example
|
|
RequestBodies map[string]RequestBody
|
|
Headers map[string]http.Header
|
|
SecuritySchemes map[string]SecurityScheme
|
|
Links map[string]Link
|
|
Callbacks map[string]Callback
|
|
}
|