Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Middleware ¶
Middleware returns a function that generates per-request middleware functions.
Types ¶
type Authorizer ¶
type Authorizer struct {
// contains filtered or unexported fields
}
Authorizer provides OpenAPI based authorization middleware.
func NewAuthorizer ¶
func NewAuthorizer(issuer *jose.JWTIssuer) *Authorizer
NewAuthorizer returns a new authorizer with required parameters.
type Schema ¶
type Schema struct {
// contains filtered or unexported fields
}
Schema abstracts schema access and validation.
type Validator ¶
type Validator struct {
// contains filtered or unexported fields
}
Validator provides Schema validation of request and response codes, media, and schema validation of payloads to ensure we are meeting the specification.
func NewValidator ¶
func NewValidator(authorizer *Authorizer, next http.Handler, openapi *Schema) *Validator
NewValidator returns an initialized validator middleware.
Click to show internal directories.
Click to hide internal directories.