Cyclops 4 HPC is the purpose built stack to support large HPC centers with resource accounting and billing of cluster as well as cloud resources.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Diego Martin 0ea0435502 [U] Sync of latest codebase 3 years ago
..
.editorconfig [U] Sync of latest codebase 3 years ago
.gitignore [U] Sync of latest codebase 3 years ago
.golangci.yml [U] Sync of latest codebase 3 years ago
.travis.yml [U] Sync of latest codebase 3 years ago
CODE_OF_CONDUCT.md [U] Sync of latest codebase 3 years ago
LICENSE [U] Sync of latest codebase 3 years ago
README.md [U] Sync of latest codebase 3 years ago
appveyor.yml [U] Sync of latest codebase 3 years ago
bindata.go [U] Sync of latest codebase 3 years ago
cache.go [U] Sync of latest codebase 3 years ago
contact_info.go [U] Sync of latest codebase 3 years ago
debug.go [U] Sync of latest codebase 3 years ago
errors.go [U] Sync of latest codebase 3 years ago
expander.go [U] Sync of latest codebase 3 years ago
external_docs.go [U] Sync of latest codebase 3 years ago
go.mod [U] Sync of latest codebase 3 years ago
go.sum [U] Sync of latest codebase 3 years ago
header.go [U] Sync of latest codebase 3 years ago
info.go [U] Sync of latest codebase 3 years ago
items.go [U] Sync of latest codebase 3 years ago
license.go [U] Sync of latest codebase 3 years ago
normalizer.go [U] Sync of latest codebase 3 years ago
normalizer_nonwindows.go [U] Sync of latest codebase 3 years ago
normalizer_windows.go [U] Sync of latest codebase 3 years ago
operation.go [U] Sync of latest codebase 3 years ago
parameter.go [U] Sync of latest codebase 3 years ago
path_item.go [U] Sync of latest codebase 3 years ago
paths.go [U] Sync of latest codebase 3 years ago
properties.go [U] Sync of latest codebase 3 years ago
ref.go [U] Sync of latest codebase 3 years ago
resolver.go [U] Sync of latest codebase 3 years ago
response.go [U] Sync of latest codebase 3 years ago
responses.go [U] Sync of latest codebase 3 years ago
schema.go [U] Sync of latest codebase 3 years ago
schema_loader.go [U] Sync of latest codebase 3 years ago
security_scheme.go [U] Sync of latest codebase 3 years ago
spec.go [U] Sync of latest codebase 3 years ago
swagger.go [U] Sync of latest codebase 3 years ago
tag.go [U] Sync of latest codebase 3 years ago
validations.go [U] Sync of latest codebase 3 years ago
xml_object.go [U] Sync of latest codebase 3 years ago

README.md

OAI object model

Build Status

codecov Slack Status license Go Reference Go Report Card

The object model for OpenAPI specification documents.

FAQ

  • What does this do?
  1. This package knows how to marshal and unmarshal Swagger API specifications into a golang object model
  2. It knows how to resolve $ref and expand them to make a single root document
  • How does it play with the rest of the go-openapi packages ?
  1. This package is at the core of the go-openapi suite of packages and code generator
  2. There is a spec loading package to fetch specs as JSON or YAML from local or remote locations
  3. There is a spec validation package built on top of it
  4. There is a spec analysis package built on top of it, to analyze, flatten, fix and merge spec documents
  • Does this library support OpenAPI 3?

No. This package currently only supports OpenAPI 2.0 (aka Swagger 2.0). There is no plan to make it evolve toward supporting OpenAPI 3.x. This discussion thread relates the full story.

An early attempt to support Swagger 3 may be found at: https://github.com/go-openapi/spec3