{
  "title": "Factorio Scenario description.json",
  "$schema": "https://json-schema.org/draft-07/schema#",
  "oneOf": [
    {
      "type": "object",
      "required":[
        "order", "multiplayer-compatible"
      ],
      "properties": {
        "order":{
          "type":"string"
        },
        "multiplayer-compatible":{
          "type": "boolean",
          "default": false
        },
        "is-main-game":{
          "type": "boolean",
          "default": false
        }
      }
    },
    {
      "type": "null"
    }
  ]
}