{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$ref": "#/components/schemas/PkgTranslationVM",
  "components": {
    "schemas": {
      "PkgTranslationVM": {
        "required": [
          "key",
          "values"
        ],
        "type": "object",
        "properties": {
          "key": {
            "minLength": 1,
            "type": "string"
          },
          "values": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PkgTranslationValueVM"
            }
          }
        },
        "additionalProperties": false
      },
      "PkgTranslationValueVM": {
        "type": "object",
        "properties": {
          "languageKey": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      }
    }
  }
}