{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "RgbColor", "type": "object", "description": "An RGB color.", "properties": { "red": { "type": "number", "description": "The red component of the color, from 0.0 to 1.0." }, "green": { "type": "number", "description": "The green component of the color, from 0.0 to 1.0." }, "blue": { "type": "number", "description": "The blue component of the color, from 0.0 to 1.0." } } }