garm/vendor/github.com/go-openapi/validate
Gabriel Adrian Samfira 97d03dd38d Update dependencies and tests
This commit updates the dependencies, vendor files and updates tests
to take into account changes to the DB driver.

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
2024-04-22 13:39:04 +00: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 Update dependencies 2023-12-18 16:20:44 +00:00
BENCHMARK.md Update dependencies and tests 2024-04-22 13:39:04 +00: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 Update dependencies and tests 2024-04-22 13:39:04 +00:00
doc.go Update dependencies 2023-12-18 16:20:44 +00:00
example_validator.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
formats.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
helpers.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
LICENSE Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
object_validator.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
options.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
pools.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
pools_debug.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
README.md Update dependencies 2023-12-18 16:20:44 +00:00
result.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
rexp.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
schema.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
schema_messages.go Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
schema_option.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
schema_props.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
slice_validator.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
spec.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
spec_messages.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
type.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
update-fixtures.sh Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
validator.go Update dependencies and tests 2024-04-22 13:39:04 +00:00
values.go Update dependencies 2023-12-18 16:20:44 +00:00

Validation helpers 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