compatibility property
The compatibility type of the schemas.
Cannot be unset for a SchemaRegistry-level SchemaConfig. If unset on a SchemaSubject-level SchemaConfig, removes the compatibility field for the SchemaConfig.
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;