compatibility property
The compatibility type of the schema.
The default value is BACKWARD. If unset in a SchemaSubject-level SchemaConfig, defaults to the global value. If unset in a SchemaRegistry-level SchemaConfig, reverts to the default value.
Required. Possible string values are:
- "NONE" : No compatibility check.
- "BACKWARD" : Backwards compatible with the most recent version.
- "BACKWARD_TRANSITIVE" : Backwards compatible with all previous versions.
- "FORWARD" : Forwards compatible with the most recent version.
- "FORWARD_TRANSITIVE" : Forwards compatible with all previous versions.
- "FULL" : Backwards and forwards compatible with the most recent version.
- "FULL_TRANSITIVE" : Backwards and forwards compatible with all previous versions.
Implementation
core.String? compatibility;