{
  "$ref": "$defs/style-options",
  "$defs": {
    "style-options": {
      "type": "object",
      "properties": {
        "color": {
          "type": "string",
          "minLength": 1
        },
        "styleCodes": {
          "type": "array",
          "items": {
            "type": "string",
            "enum": [
              "bold",
              "italic",
              "underline",
              "dim",
              "blink",
              "reverse",
              "strikethrough"
            ]
          }
        },
        "htmlStyleFormat": {
          "type": "string",
          "enum": [
            "css",
            "className"
          ],
          "description": "HTML style format"
        }
      },
      "required": [
        "color"
      ],
      "additionalProperties": false
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#",
  "version": "0.1.1"
}