garm/vendor/github.com/go-openapi/validate
Ionut Balutoiu 4a68f3b046 Generate initial swagger API client library code
Signed-off-by: Mihaela Balutoiu <mbalutoiu@cloudbasesolutions.com>
2023-06-30 19:04:13 +03:00
..
.editorconfig Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
.gitattributes Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
.gitignore Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
.golangci.yml Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
appveyor.yml Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
CODE_OF_CONDUCT.md Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
context.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
debug.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
default_validator.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
doc.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
example_validator.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
formats.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
helpers.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
LICENSE Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
object_validator.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
options.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
README.md Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
result.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
rexp.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
schema.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
schema_messages.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
schema_option.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
schema_props.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
slice_validator.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
spec.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
spec_messages.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
type.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
update-fixtures.sh Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
validator.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
values.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00

Validation helpers

Build Status Build status codecov Slack Status license Go Reference Go Report Card

This package provides helpers to validate Swagger 2.0. specification (aka OpenAPI 2.0).

Reference can be found here: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md.

What's inside?

  • A validator for Swagger specifications
  • A validator for JSON schemas draft4
  • Helper functions to validate individual values (used by code generated by go-swagger).
    • Required, RequiredNumber, RequiredString
    • ReadOnly
    • UniqueItems, MaxItems, MinItems
    • Enum, EnumCase
    • Pattern, MinLength, MaxLength
    • Minimum, Maximum, MultipleOf
    • FormatOf

Documentation

FAQ

  • 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