mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-10 12:37:48 +00:00
14 lines
281 B
Go
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
|
|
}
|