{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Color", "title": "Color", "type": "object", "properties": { "name": { "type": "string" }, "hex": { "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" } } }