Skip to content

Commit

Permalink
Fix openapi schema key_name in MgmtTypeEntity.java
Browse files Browse the repository at this point in the history
  • Loading branch information
IniterWorker authored Sep 30, 2024
1 parent d3c3a3e commit 3677389
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public abstract class MgmtTypeEntity extends MgmtNamedEntity {

@JsonProperty(required = true)
@Schema(name = "Key that can be interpreted by the target", example = "id.t23")
@Schema(description = "Key that can be interpreted by the target", example = "id.t23")
private String key;

@JsonProperty
Expand All @@ -37,4 +37,4 @@ public abstract class MgmtTypeEntity extends MgmtNamedEntity {
@JsonProperty
@Schema(description = "Deleted flag, used for soft deleted entities", example = "false")
private boolean deleted;
}
}

0 comments on commit 3677389

Please sign in to comment.