func FilterSpecByPaths(sp *spec.Swagger, keepPathPrefixes []string)
FilterSpecByPaths removes unnecessary paths and definitions used by those paths. i.e. if a Path removed by this function, all definitions used by it and not used anywhere else will also be removed.
func FilterSpecByPathsWithoutSideEffects(sp *spec.Swagger, keepPathPrefixes []string) *spec.Swagger
FilterSpecByPathsWithoutSideEffects removes unnecessary paths and definitions used by those paths. i.e. if a Path removed by this function, all definitions used by it and not used anywhere else will also be removed. It does not modify the input, but the output shares data structures with the input.
func MergeSpecs(dest, source *spec.Swagger) error
MergeSpecs copies paths, definitions and parameters from source to dest, rename definitions if needed. It will fail on path conflicts.
The destination is mutated, the source is not.
func MergeSpecsFailOnDefinitionConflict(dest, source *spec.Swagger) error
MergeSpecsFailOnDefinitionConflict is different from MergeSpecs as it fails if there is a definition or parameter conflict.
func MergeSpecsIgnorePathConflictDeprecated(dest, source *spec.Swagger) error
MergeSpecsIgnorePathConflictDeprecated is the same as MergeSpecs except it will ignore any path conflicts by keeping the paths of destination. It will rename definition and parameter conflicts.
func MergeSpecsIgnorePathConflictRenamingDefinitionsAndParameters(dest, source *spec.Swagger) error
MergeSpecsIgnorePathConflictRenamingDefinitionsAndParameters is the same as MergeSpecs except it will ignore any path conflicts by keeping the paths of destination. It will rename definition and parameter conflicts.