[JsonPropertyName("colors")] public List<string> Colors { get; set; } }

public class Palette { [JsonPropertyName("id")] public string Id { get; set; }

public class Rule { [JsonPropertyName("id")] public string Id { get; set; }

[JsonPropertyName("assets")] public List<string> Assets { get; set; }

[JsonPropertyName("type")] public string Type { get; set; }

[JsonPropertyName("default")] public int DefaultValue { get; set; } }

public class Condition { [JsonPropertyName("terrain_height")] public string TerrainHeight { get; set; } }

[JsonPropertyName("conditions")] public List<Condition> Conditions { get; set; }