{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://tcgsetdesigner.com/schemas/visual-template-v1.schema.json",
  "title": "TCG Set Designer visual template metadata v1",
  "type": "object",
  "additionalProperties": false,
  "required": ["schemaVersion", "internalName", "version", "name", "templateAuthor", "game"],
  "properties": {
    "$schema": { "type": "string" },
    "schemaVersion": { "const": 1 },
    "internalName": { "type": "string", "pattern": "^[a-z0-9][a-z0-9-]{0,79}$" },
    "version": { "type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+(?:-[A-Za-z0-9.-]+)?(?:\\+[A-Za-z0-9.-]+)?$" },
    "name": { "$ref": "#/definitions/localisedText" },
    "website": { "type": "string", "format": "uri" },
    "repository": { "type": "string", "format": "uri" },
    "shouldAutoUpdate": { "type": "boolean" },
    "templateAuthor": {
      "type": "object", "additionalProperties": false, "required": ["name", "email"],
      "properties": {
        "name": { "$ref": "#/definitions/localisedText" },
        "email": { "type": "string", "format": "email" },
        "url": { "type": "string", "format": "uri" },
        "phone": { "type": "string" }
      }
    },
    "game": {
      "type": "object", "additionalProperties": false, "required": ["internalName"],
      "properties": {
        "internalName": { "type": "string", "pattern": "^[A-Za-z0-9]+$" },
        "name": { "$ref": "#/definitions/localisedText" }
      }
    }
  },
  "definitions": {
    "localisedText": {
      "type": "array", "minItems": 1,
      "items": {
        "type": "object", "additionalProperties": false, "required": ["language", "content"],
        "properties": {
          "language": { "type": "string", "pattern": "^[a-z]{2}$" },
          "content": { "type": "string", "minLength": 1 }
        }
      }
    }
  }
}
