{
  "$id": "http://themes.bigcommerce.com/theme_packages/editorSchemaTranslations",
  "title": "Theme translations",
  "description": "Translations of strings in schema.json file of a theme",
  "type": "object",
  "patternProperties": {
    "^i18n.": {
      "type": "object",
      "properties": {
        "default": {
          "type": "string",
          "minLength": 1
        }
      },
      "patternProperties": {
        "[a-z]{2}(-[a-zA-Z0-9]{2,})?$": {
          "type": "string",
          "minLength": 1
        }
      },
      "additionalProperties": false,
      "required": ["default"]
    },
    "^i18n.Bigcommerce.": {
      "type": "object",
      "properties": {
        "default": {
          "type": "string",
          "minLength": 1
        }
      },
      "patternProperties": {
        "[a-z]{2}(-[a-zA-Z0-9]{2,})?$": {
          "type": "string",
          "minLength": 1
        }
      },
      "additionalProperties": false,
      "required": ["default"]
    }
  },
  "additionalProperties": false
}
