SimpleLocalize · Schema

SimpleLocalize Language

A language configured in a SimpleLocalize translation project.

LocalizationTranslationInternationalization

Properties

Name Type Description
key string Unique language identifier within the project (e.g., en, fr-FR)
name string Human-readable display name for the language (e.g., English, French)
View JSON Schema on GitHub

JSON Schema

simplelocalize-language-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.simplelocalize.io/schemas/language",
  "title": "SimpleLocalize Language",
  "description": "A language configured in a SimpleLocalize translation project.",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Unique language identifier within the project (e.g., en, fr-FR)",
      "maxLength": 20
    },
    "name": {
      "type": "string",
      "description": "Human-readable display name for the language (e.g., English, French)",
      "maxLength": 200
    }
  },
  "required": ["key"]
}