mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-09 20:47:44 +00:00
16 lines
351 B
Go
16 lines
351 B
Go
package v3
|
|
|
|
import "github.com/pb33f/libopenapi/datamodel/low"
|
|
|
|
type Document struct {
|
|
Version string
|
|
Info Info
|
|
Servers []Server
|
|
Paths Paths
|
|
Components Components
|
|
Security []SecurityRequirement
|
|
Tags []Tag
|
|
ExternalDocs ExternalDoc
|
|
Extensions map[string]low.ObjectReference
|
|
}
|