{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://schemas.apps.smartmate.io/patterns/color.schema.json",
  "$$target": "https://schemas.apps.smartmate.io/patterns/color.schema.json",
  "type": "string",
  "title": "Color",
  "description": "A color in hexadecimal value.",
  "minLength": 4,
  "maxLength": 7,
  "pattern": "^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$",
  "examples": [
    "#CCC",
    "#FFFFFF"
  ]
}
