garm/vendor/github.com/go-openapi/validate
Gabriel Adrian Samfira 47537fb8b6 Update all dependencies
Update all deps.

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
2026-01-06 01:13:34 +02: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 all dependencies 2026-01-06 01:13:34 +02: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 Update all dependencies 2026-01-06 01:13:34 +02:00
debug.go Update all dependencies 2026-01-06 01:13:34 +02:00
default_validator.go Update all dependencies 2026-01-06 01:13:34 +02:00
doc.go Update all dependencies 2026-01-06 01:13:34 +02:00
example_validator.go Update all dependencies 2026-01-06 01:13:34 +02:00
formats.go Update all dependencies 2026-01-06 01:13:34 +02:00
helpers.go Update all dependencies 2026-01-06 01:13:34 +02:00
LICENSE Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
object_validator.go Update all dependencies 2026-01-06 01:13:34 +02:00
options.go Update all dependencies 2026-01-06 01:13:34 +02:00
pools.go Update all dependencies 2026-01-06 01:13:34 +02:00
pools_debug.go Update all dependencies 2026-01-06 01:13:34 +02:00
README.md Update all dependencies 2026-01-06 01:13:34 +02:00
result.go Update all dependencies 2026-01-06 01:13:34 +02:00
rexp.go Update all dependencies 2026-01-06 01:13:34 +02:00
schema.go Update all dependencies 2026-01-06 01:13:34 +02:00
schema_messages.go Update all dependencies 2026-01-06 01:13:34 +02:00
schema_option.go Update all dependencies 2026-01-06 01:13:34 +02:00
schema_props.go Update all dependencies 2026-01-06 01:13:34 +02:00
slice_validator.go Update all dependencies 2026-01-06 01:13:34 +02:00
spec.go Update all dependencies 2026-01-06 01:13:34 +02:00
spec_messages.go Update all dependencies 2026-01-06 01:13:34 +02:00
type.go Update all dependencies 2026-01-06 01:13:34 +02:00
update-fixtures.sh Generate initial swagger API client library code 2023-06-30 19:04:13 +03:00
validator.go Update all dependencies 2026-01-06 01:13:34 +02:00
values.go Update all dependencies 2026-01-06 01:13:34 +02: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

Licensing

This library ships under the SPDX-License-Identifier: Apache-2.0.

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