Fix openapi schema key_name in MgmtTypeEntity.java (#1850)
This commit is contained in:
@@ -26,7 +26,7 @@ import lombok.experimental.Accessors;
|
|||||||
public abstract class MgmtTypeEntity extends MgmtNamedEntity {
|
public abstract class MgmtTypeEntity extends MgmtNamedEntity {
|
||||||
|
|
||||||
@JsonProperty(required = true)
|
@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;
|
private String key;
|
||||||
|
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
@@ -37,4 +37,4 @@ public abstract class MgmtTypeEntity extends MgmtNamedEntity {
|
|||||||
@JsonProperty
|
@JsonProperty
|
||||||
@Schema(description = "Deleted flag, used for soft deleted entities", example = "false")
|
@Schema(description = "Deleted flag, used for soft deleted entities", example = "false")
|
||||||
private boolean deleted;
|
private boolean deleted;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user