(a, b Property)
| 320 | } |
| 321 | |
| 322 | func PropertiesEqual(a, b Property) bool { |
| 323 | return a.JsonFieldName == b.JsonFieldName && a.Schema.TypeDecl() == b.Schema.TypeDecl() && a.Required == b.Required |
| 324 | } |
| 325 | |
| 326 | func GenerateGoSchema(sref *openapi3.SchemaRef, path []string) (Schema, error) { |
| 327 | // Add a fallback value in case the sref is nil. |
no test coverage detected
searching dependent graphs…