{
  "$id": "html-comp.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$ref": "contentitem.schema.json",
  "description": "Html Content Component in CTK",
  "properties": {
    "type": {
      "type": "string",
      "const": "html",
      "description": "Shold be always set to html"
    },
    "content": {
      "type": "string",
      "minLength": 1
    },
    "customType": {
      "type": "string",
      "enum": [ "callout-builtin", "quote-builtin", "student-work", "direction-line", "instructions", "applied-knowledge", "assignment", "big-idea", "career-connection", "core-content", "example", "genre", "goals", "grammar", "hands-on-lab", "historical_trends", "information", "lesson_question", "lesson_summary", "listening", "literary_devices", "look_ahead", "misconceptions", "phenomenon", "pictographs", "preview", "procedure", "profile", "quick-check", "reading_&_writing", "real-world_connection", "review", "science_practice", "strategy", "think-about-it", "try-it", "warm-up", "words_to_know" ]
    }
  },
  "required": [ "type", "content" ],
  "title": "Html",
  "type": "object"
}