Skip to content

Commit

Permalink
Add list of schema registry compatibility levels
Browse files Browse the repository at this point in the history
  • Loading branch information
amohrland committed Dec 30, 2024
1 parent 060325d commit 0a1e214
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,17 @@ object SchemaRegistryApi {
fromString(s).getOrElse(
throw ParseFailure(s"Unable to parse CompatibilityLevel: $s")
)

val values: List[CompatibilityLevel] =
List(
Backward,
BackwardTransitive,
Forward,
ForwardTransitive,
Full,
FullTransitive,
None,
)
}

def register[F[_]: Sync, K, V](
Expand Down

0 comments on commit 0a1e214

Please sign in to comment.