Files
libopenapi/datamodel/low/3.0/external_doc.go
Dave Shanley a906d46227 Completed adding v3 models (I think)
Going to start logic for building things out. attempting generic builder pattern first.
2022-07-29 06:52:07 -04:00

14 lines
281 B
Go

package v3
import (
"github.com/pb33f/libopenapi/datamodel/low"
"gopkg.in/yaml.v3"
)
type ExternalDoc struct {
Node *yaml.Node
Description low.NodeReference[string]
URL low.NodeReference[string]
Extensions map[string]low.ObjectReference
}