Valspar · Schema

Valspar Paint Color

A Valspar paint color from the Valspar color collection (now part of Sherwin-Williams)

PaintCoatingsManufacturingConsumer GoodsFortune 1000

Properties

Name Type Description
colorCode string Valspar color code identifier
colorName string Human-readable color name (e.g., Bleached Linen)
hexValue string Hex color code representation
rgb object
lrv number Light Reflectance Value — how much light the color reflects (0=black, 100=white)
collection string Product line or collection (e.g., Reserve, Signature Colors)
category string Color family category (e.g., Neutrals, Blues, Greens)
url string URL to color detail page on valspar.com
View JSON Schema on GitHub

JSON Schema

valspar-color-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/valspar/main/json-schema/valspar-color-schema.json",
  "title": "Valspar Paint Color",
  "description": "A Valspar paint color from the Valspar color collection (now part of Sherwin-Williams)",
  "type": "object",
  "required": ["colorCode", "colorName"],
  "properties": {
    "colorCode": {
      "type": "string",
      "description": "Valspar color code identifier"
    },
    "colorName": {
      "type": "string",
      "description": "Human-readable color name (e.g., Bleached Linen)"
    },
    "hexValue": {
      "type": "string",
      "pattern": "^#[0-9A-Fa-f]{6}$",
      "description": "Hex color code representation"
    },
    "rgb": {
      "type": "object",
      "properties": {
        "red": {
          "type": "integer",
          "minimum": 0,
          "maximum": 255,
          "description": "Red channel (0-255)"
        },
        "green": {
          "type": "integer",
          "minimum": 0,
          "maximum": 255,
          "description": "Green channel (0-255)"
        },
        "blue": {
          "type": "integer",
          "minimum": 0,
          "maximum": 255,
          "description": "Blue channel (0-255)"
        }
      },
      "required": ["red", "green", "blue"]
    },
    "lrv": {
      "type": "number",
      "minimum": 0,
      "maximum": 100,
      "description": "Light Reflectance Value — how much light the color reflects (0=black, 100=white)"
    },
    "collection": {
      "type": "string",
      "description": "Product line or collection (e.g., Reserve, Signature Colors)"
    },
    "category": {
      "type": "string",
      "description": "Color family category (e.g., Neutrals, Blues, Greens)"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to color detail page on valspar.com"
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/valspar-color"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.