{
  "$schema": "http://json-schema.org/draft-07/schema",
  "type": "object",
  "required": [
    "heading",
    "bodyText"
  ],
  "properties": {
    "heading": {
      "type": "string"
    },
    "icon": {
      "type": "string",
      "enum": [
        "book",
        "clock",
        "graph",
        "user"
      ]
    },
    "bodyText": {
      "type": "string"
    },
    "children": {
      "typeof": "function",
      "tsType": "React.ReactNode"
    }
  },
  "description": ""
}