{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "additionalProperties": {
    "minProperties": 1,
    "anyOf": [
      {
        "type": "string"
      },
      {
        "$ref": "#/definitions/resource"
      }
    ]
  },
  "definitions": {
    "resource": {
      "type": "object",
      "additionalProperties": {
        "minProperties": 1,
        "anyOf": [
          {
            "type": "string"
          },
          {
            "$ref": "#/definitions/resource"
          }
        ]
      }
    }
  },
  "id": "https://json.schemastore.org/resjson.json",
  "title": "JSON schema for Windows resource files (.resjson)",
  "type": "object"
}
