{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/resjson/latest.json",
  "title": "JSON schema for Windows resource files (.resjson)",
  "x-lintel": {
    "source": "https://www.schemastore.org/resjson.json",
    "sourceSha256": "486a2dbcf13bc1056fa88496b97063100a0073436448fd416a1ba73f7e2bda73",
    "fileMatch": [
      "*.resjson"
    ]
  },
  "type": "object",
  "id": "https://json.schemastore.org/resjson.json",
  "$defs": {
    "resource": {
      "type": "object",
      "additionalProperties": {
        "minProperties": 1,
        "anyOf": [
          {
            "type": "string"
          },
          {
            "$ref": "#/$defs/resource"
          }
        ]
      }
    }
  },
  "additionalProperties": {
    "minProperties": 1,
    "anyOf": [
      {
        "type": "string"
      },
      {
        "$ref": "#/$defs/resource"
      }
    ]
  }
}
