(url string)
| 133 | } |
| 134 | |
| 135 | func rejectURL(url string) (io.ReadCloser, error) { |
| 136 | return nil, fmt.Errorf("jsonschema: %w while getting %v", |
| 137 | utils.PermissionDenied, url) |
| 138 | } |
| 139 | |
| 140 | func PopulateDefaults(dest *ordereddict.Dict, |
| 141 | src map[string]interface{}, schema *jsonschema.Schema) { |