Files
libopenapi/datamodel/low/3.0/example.go
2022-07-28 08:49:57 -04:00

16 lines
367 B
Go

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