paramVerifyingSchema only performs validation based on the fieldValidation query param being unsupported by the apiserver, because server-side validation will be performed instead of client-side validation.
| 119 | // server-side validation will be performed instead |
| 120 | // of client-side validation. |
| 121 | type paramVerifyingSchema struct { |
| 122 | schema Schema |
| 123 | verifier resource.Verifier |
| 124 | directive string |
| 125 | } |
| 126 | |
| 127 | // ValidateBytes validates bytes per a ParamVerifyingSchema |
| 128 | func (c *paramVerifyingSchema) ValidateBytes(data []byte) error { |
nothing calls this directly
no outgoing calls
no test coverage detected