snapshot

snapshot schema from Wikimedia Enterprise API spec

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

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

JSON Schema

wikimedia-enterprise-snapshot-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikipedia/refs/heads/main/json-schema/wikimedia-enterprise-snapshot-schema.json",
  "title": "snapshot",
  "description": "snapshot schema from Wikimedia Enterprise API spec",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "date_modified": {
      "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"
    },
    "chunks": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}