mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-09 04:20:17 +00:00
16 lines
367 B
Go
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
|
|
}
|