Wikimedia · Schema

batch

Schema for batch from the Wikimedia Enterprise API

WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference

Properties

Name Type Description
identifier string
name string
version string
in_language object
is_part_of object
namespace object
size object
View JSON Schema on GitHub

JSON Schema

batch.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/batch.json",
  "title": "batch",
  "description": "Schema for batch from the Wikimedia Enterprise API",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "in_language": {
      "$ref": "#/components/schemas/language"
    },
    "is_part_of": {
      "$ref": "#/components/schemas/project"
    },
    "namespace": {
      "$ref": "#/components/schemas/article_namespace"
    },
    "size": {
      "$ref": "#/components/schemas/size"
    }
  }
}