kubernetes/vendor/github.com/go-openapi/strfmt
2021-02-28 15:17:29 -08:00
..
.editorconfig Update a few dependencies 2018-11-01 09:59:43 +11:00
.gitignore
.golangci.yml hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00
.travis.yml hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00
bson.go hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00
CODE_OF_CONDUCT.md Add go-openapi dependencies and update Godeps 2016-08-18 13:50:50 -07:00
date.go hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00
default.go hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00
doc.go Add go-openapi dependencies and update Godeps 2016-08-18 13:50:50 -07:00
duration.go hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00
format.go hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00
go.mod hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00
go.sum hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00
LICENSE Add go-openapi dependencies and update Godeps 2016-08-18 13:50:50 -07:00
README.md Fix CRD validation error for 'items' field 2019-06-26 16:08:34 +08:00
time.go hack/pin-dependency.sh github.com/go-openapi/validate v0.19.5 2019-11-20 18:33:45 +01:00

Strfmt Build Status codecov Slack Status

license GoDoc GolangCI Go Report Card

This package exposes a registry of data types to support string formats in the go-openapi toolkit.

strfmt represents a well known string format such as credit card or email. The go toolkit for OpenAPI specifications knows how to deal with those.

Supported data formats

go-openapi/strfmt follows the swagger 2.0 specification with the following formats defined here.

It also provides convenient extensions to go-openapi users.

  • JSON-schema draft 4 formats
    • date-time
    • email
    • hostname
    • ipv4
    • ipv6
    • uri
  • swagger 2.0 format extensions
    • binary
    • byte (e.g. base64 encoded string)
    • date (e.g. "1970-01-01")
    • password
  • go-openapi custom format extensions
    • bsonobjectid (BSON objectID)
    • creditcard
    • duration (e.g. "3 weeks", "1ms")
    • hexcolor (e.g. "#FFFFFF")
    • isbn, isbn10, isbn13
    • mac (e.g "01:02:03:04:05:06")
    • rgbcolor (e.g. "rgb(100,100,100)")
    • ssn
    • uuid, uuid3, uuid4, uuid5
    • cidr (e.g. "192.0.2.1/24", "2001:db8:a0b:12f0::1/32")

NOTE: as the name stands for, this package is intended to support string formatting only. It does not provide validation for numerical values with swagger format extension for JSON types "number" or "integer" (e.g. float, double, int32...).

Format types

Types defined in strfmt expose marshaling and validation capabilities.

List of defined types:

  • Base64
  • CreditCard
  • Date
  • DateTime
  • Duration
  • Email
  • HexColor
  • Hostname
  • IPv4
  • IPv6
  • CIDR
  • ISBN
  • ISBN10
  • ISBN13
  • MAC
  • ObjectId
  • Password
  • RGBColor
  • SSN
  • URI
  • UUID
  • UUID3
  • UUID4
  • UUID5