mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-07 20:47:45 +00:00
18 lines
492 B
Go
18 lines
492 B
Go
package v3
|
|
|
|
import (
|
|
"github.com/pb33f/libopenapi/datamodel/low"
|
|
)
|
|
|
|
type Document struct {
|
|
Version low.NodeReference[string]
|
|
Info low.NodeReference[*Info]
|
|
Servers low.NodeReference[[]low.ValueReference[*Server]]
|
|
Paths low.NodeReference[*Paths]
|
|
Components low.NodeReference[*Components]
|
|
Security []*SecurityRequirement
|
|
Tags []low.NodeReference[*Tag]
|
|
ExternalDocs *ExternalDoc
|
|
Extensions map[low.NodeReference[string]]low.NodeReference[any]
|
|
}
|