Documentation ¶
Overview ¶
Package swagger implements the structures of the Swagger (https://github.com/wordnik/swagger-core/wiki) specification
Index ¶
- Variables
- func InstallSwaggerService(aSwaggerConfig Config)
- func RegisterSwaggerService(config Config, wsContainer *restful.Container)
- type Api
- type ApiDeclaration
- type ApiKey
- type ApiRef
- type Authorization
- type Config
- type Endpoint
- type ErrorResponse
- type GrantType
- type Model
- type ModelProperty
- type OAuth
- type Operation
- type Parameter
- type Protocol
- type ResourceListing
- type ResponseMessage
- type SwaggerService
Constants ¶
This section is empty.
Variables ¶
var LogInfo = log.Printf
LogInfo is the function that is called when this package needs to log. It defaults to log.Printf
Functions ¶
func InstallSwaggerService ¶
func InstallSwaggerService(aSwaggerConfig Config)
InstallSwaggerService add the WebService that provides the API documentation of all services conform the Swagger documentation specifcation. (https://github.com/wordnik/swagger-core/wiki).
func RegisterSwaggerService ¶
func RegisterSwaggerService(config Config, wsContainer *restful.Container)
RegisterSwaggerService add the WebService that provides the API documentation of all services conform the Swagger documentation specifcation. (https://github.com/wordnik/swagger-core/wiki).
Types ¶
type ApiDeclaration ¶
type ApiDeclaration struct { ApiVersion string `json:"apiVersion"` SwaggerVersion string `json:"swaggerVersion"` BasePath string `json:"basePath"` ResourcePath string `json:"resourcePath"` // must start with / Consumes []string `json:"consumes,omitempty"` Produces []string `json:"produces,omitempty"` Apis []Api `json:"apis,omitempty"` Models map[string]Model `json:"models,omitempty"` }
https://github.com/wordnik/swagger-core/blob/scala_2.10-1.3-RC3/schemas/api-declaration-schema.json
type ApiKey ¶
type Authorization ¶
type Config ¶
type Config struct { WebServicesUrl string // url where the services are available, e.g. http://localhost:8080 ApiPath string // path where the JSON api is avaiable , e.g. /apidocs SwaggerPath string // [optional] path where the swagger UI will be served, e.g. /swagger SwaggerFilePath string // [optional] location of folder containing Swagger HTML5 application index.html WebServices []*restful.WebService }
type Endpoint ¶
type ErrorResponse ¶
type GrantType ¶
type Model ¶
type Model struct { Id string `json:"id"` Required []string `json:"required,omitempty"` Properties map[string]ModelProperty `json:"properties"` }
type ModelProperty ¶
type OAuth ¶
type Operation ¶
type Operation struct { HttpMethod string `json:"httpMethod"` Nickname string `json:"nickname"` Type string `json:"type"` // in 1.1 = DataType // ResponseClass string `json:"responseClass"` obsolete in 1.2 Summary string `json:"summary,omitempty"` Notes string `json:"notes,omitempty"` Parameters []Parameter `json:"parameters,omitempty"` ResponseMessages []ResponseMessage `json:"responseMessages,omitempty"` // optional Consumes []string `json:"consumes,omitempty"` Produces []string `json:"produces,omitempty"` Authorizations []Authorization `json:"authorizations,omitempty"` Protocols []Protocol `json:"protocols,omitempty"` }
type Parameter ¶
type Parameter struct { ParamType string `json:"paramType"` // path,query,body,header,form Name string `json:"name"` Description string `json:"description"` DataType string `json:"dataType"` // 1.2 needed? Type string `json:"type"` // integer Format string `json:"format"` // int64 Required bool `json:"required"` Minimum int `json:"minimum"` Maximum int `json:"maximum"` }
type ResourceListing ¶
type ResponseMessage ¶
type SwaggerService ¶
type SwaggerService struct {
// contains filtered or unexported fields
}