(result, docsURL string)
| 437 | } |
| 438 | |
| 439 | func appendKnownFieldDocsURL(result, docsURL string) string { |
| 440 | if docsURL == "" { |
| 441 | return result |
| 442 | } |
| 443 | return fmt.Sprintf("%s See: %s", result, docsURL) |
| 444 | } |
| 445 | |
| 446 | // rewriteAdditionalPropertiesError rewrites "additional properties not allowed" errors to be more user-friendly |
| 447 | func rewriteAdditionalPropertiesError(message string) string { |
no outgoing calls
no test coverage detected