abstract class EquivalenceRelation extends Serializable
Represents an equivalence relation between two schemas that determines whether two schemas should be considered equivalent in the final discovered schema.
For more details see [Parametric inference for massive JSON datasets](https://link.springer.com/article/10.1007/s00778-018-0532-7) by Baazizi et al
- Annotations
- @SerialVersionUID()
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- EquivalenceRelation
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new EquivalenceRelation()
Abstract Value Members
- abstract def fuse(kind1: JsonSchema[_], kind2: JsonSchema[_]): Boolean
Returns true if the two schemas should be considered equivalent.
Returns true if the two schemas should be considered equivalent.
- kind1
the first schema to compare
- kind2
the second schem to compare