changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "colors": {
+ "description": "Array of formatted color objects",
+ "items": {
+ "properties": {
+ "closest_named_hex": {
+ "description": "Hex code of closest named color",
+ "type": "string"
+ },
+ "cmyk": {
+ "description": "CMYK color format string",
+ "type": "string"
+ },
+ "contrast": {
+ "description": "WCAG contrast ratio value",
+ "type": "string"
+ },
+ "exact_name_match": {
+ "description": "Whether the name is an exact match",
+ "type": "boolean"
+ },
+ "hex": {
+ "description": "Hex color value",
+ "type": "string"
+ },
+ "hsl": {
+ "description": "HSL color format string",
+ "type": "string"
+ },
+ "hsv": {
+ "description": "HSV color format string",
+ "type": "string"
+ },
+ "name": {
+ "description": "Common color name",
+ "type": "string"
+ },
+ "rgb": {
+ "description": "RGB color format string",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "exact_name_match",
+ "closest_named_hex",
+ "hex",
+ "rgb",
+ "hsl",
+ "hsv",
+ "cmyk",
+ "contrast"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Number of colors in scheme",
+ "type": "number"
+ },
+ "mode": {
+ "description": "Color scheme mode used",
+ "type": "string"
+ },
+ "seed_hex": {
+ "description": "Seed hex color with # prefix",
+ "type": "string"
+ }
+ },
+ "required": [
+ "seed_hex",
+ "mode",
+ "count",
+ "colors"
+ ],
+ "type": "object"
+}