Wikimedia · Schema

language

Schema for language from the Wikimedia Enterprise API

WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference

Properties

Name Type Description
identifier string
name string
alternate_name string
direction string
View JSON Schema on GitHub

JSON Schema

language.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/language.json",
  "title": "language",
  "description": "Schema for language from the Wikimedia Enterprise API",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string",
      "example": "en"
    },
    "name": {
      "type": "string",
      "example": "English"
    },
    "alternate_name": {
      "type": "string",
      "example": "English"
    },
    "direction": {
      "type": "string",
      "example": "ltr"
    }
  }
}