{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "description": "A list of default values for any settings that you might want to populate. Each entry should include the setting name and the value.",
  "additionalProperties": {
    "anyOf": [
      {
        "type": "number"
      },
      {
        "type": "boolean"
      },
      {
        "type": "string"
      },
      {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    ]
  }
}
