{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Microsite Page Config Values",
  "type": "object",
  "required": [
    "html",
    "title"
  ],
  "additionalProperties": false,
  "properties": {
    "title": {
      "title": "Title",
      "description": "The HTML page title",
      "type": "string"
    },
    "description": {
      "title": "Description",
      "description": "The HTML page description",
      "type": "string"
    },
    "html": {
      "title": "HTML",
      "description": "The HTML template",
      "type": "string"
    }
  }
}