{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CategoricalScoreOption", "title": "CategoricalScoreOption", "type": "object", "properties": { "key": { "type": "string", "description": "Stable option key. Use lowercase letters, numbers, underscores, or hyphens.", "maxLength": 128 }, "label": { "type": "string", "description": "Human-readable option label.", "maxLength": 256 } }, "required": [ "key", "label" ] }