in rest/src/main/java/com/epam/eco/schemacatalog/rest/view/SchemaProfile.java [120:134]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SchemaProfile that = (SchemaProfile) o;
return version == that.version &&
schemaRegistryId == that.schemaRegistryId &&
versionLatest == that.versionLatest &&
deleted == that.deleted &&
Objects.equals(subject, that.subject) &&
compatibilityLevel == that.compatibilityLevel &&
globalCompatibilityLevel == that.globalCompatibilityLevel &&
mode == that.mode &&
Objects.equals(schemaMetadata, that.schemaMetadata) &&
Objects.equals(schemas, that.schemas);
}