We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d70754f + 8019856 commit daaad09Copy full SHA for daaad09
pkg/runtime/types.go
@@ -43,10 +43,11 @@ type TypeMeta struct {
43
}
44
45
const (
46
- ContentTypeJSON string = "application/json"
47
- ContentTypeYAML string = "application/yaml"
48
- ContentTypeProtobuf string = "application/vnd.kubernetes.protobuf"
49
- ContentTypeCBOR string = "application/cbor"
+ ContentTypeJSON string = "application/json"
+ ContentTypeYAML string = "application/yaml"
+ ContentTypeProtobuf string = "application/vnd.kubernetes.protobuf"
+ ContentTypeCBOR string = "application/cbor" // RFC 8949
50
+ ContentTypeCBORSequence string = "application/cbor-seq" // RFC 8742
51
)
52
53
// RawExtension is used to hold extensions in external versions.
0 commit comments