Skip to content

Commit

Permalink
Preserve order of categories from values.schema.json (#451)
Browse files Browse the repository at this point in the history
  • Loading branch information
olevitt authored Jul 2, 2024
1 parent 61be46e commit b870f6f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;

/** Properties */
@Schema(description = "")
public class Category {

@Schema(description = "")
Map<String, Property> properties = new HashMap<>();
Map<String, Property> properties = new LinkedHashMap<>();

@Schema(description = "")
String description;
Expand Down

0 comments on commit b870f6f

Please sign in to comment.