Skip to main content

plugin_manifest_v3_3.json

plugin_manifest_v3_3.json

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string",
      "minLength": 1
    },
    "name": {
      "type": "string",
      "minLength": 1
    },
    "locale_name": {
      "description": "translated name",
      "type": "object",
      "properties": {
        "de": {
          "type": "string"
        },
        "el": {
          "type": "string"
        },
        "en": {
          "type": "string"
        },
        "es-es": {
          "type": "string"
        },
        "hu": {
          "type": "string"
        },
        "it": {
          "type": "string"
        },
        "ja": {
          "type": "string"
        },
        "ko": {
          "type": "string"
        },
        "pt-pt": {
          "type": "string"
        },
        "ru": {
          "type": "string"
        },
        "th": {
          "type": "string"
        },
        "tr": {
          "type": "string"
        },
        "zh-cn": {
          "type": "string"
        },
        "zh-tw": {
          "type": "string"
        }
      }
    },
    "api_version": {
      "type": "string",
      "description": "default value will become obsolete in the near future, make sure your plugin set the right api_version",
      "enum": [
        "3.3"
      ]
    },
    "type": {
      "enum": [
        "cpp",
        "python",
        "c#"
      ]
    },
    "main": {
      "type": "string",
      "minLength": 1
    },
    "version": {
      "description": "Developer version",
      "type": "string",
      "minLength": 1
    },
    "html": {
      "type": "object",
      "properties": {
        "white_list": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "alias_hosts": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "html_root": {
          "type": "string",
          "minLength": 1
        }
      },
      "required": [
        "html_root"
      ]
    }
  },
  "required": [
    "identifier",
    "name",
    "api_version",
    "type",
    "main"
  ]
}

Did this answer your question?