Files
libopenapi/datamodel/low/3.0/document.go
Dave Shanley ec87ddf8cc Operartion model is now complete!
That should be the largest bulk of complexity, now onto components.
2022-08-09 07:59:22 -04:00

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]
}