{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Multiplic Project Configuration",
  "type": "object",
  "properties": {
    "sites": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "path": { "type": "string" },
          "domain": { "type": "string" }
        },
        "required": ["name", "path"]
      }
    }
  },
  "required": ["sites"]
}
