92334ad1dd
Set Up S3 integration * cfginterfaceandfirsts3funcs * addlocalstack * generallypassesfullsuite * addedmultipleattemptedpings * cleanup * stabiliseplusskip
11 lines
335 B
Go
11 lines
335 B
Go
package openapi3
|
|
|
|
//go:generate go run refsgenerator.go
|
|
|
|
// Ref is specified by OpenAPI/Swagger 3.0 standard.
|
|
// See https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#reference-object
|
|
type Ref struct {
|
|
Ref string `json:"$ref" yaml:"$ref"`
|
|
Origin *Origin `json:"origin,omitempty" yaml:"origin,omitempty"`
|
|
}
|