Skip to content

Commit

Permalink
[DSM] Add avro schema object extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
ericfirth committed Oct 2, 2024
1 parent 4eeed47 commit 26f86d7
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ public static boolean extractProperty(
switch (field.schema().getType()) {
case RECORD:
type = "object";
if (!extractSchema(field.schema(), builder, depth)) {
return false;
}
break;
case ENUM:
type = "string";
Expand Down

0 comments on commit 26f86d7

Please sign in to comment.