event

event schema from Wikimedia Enterprise API spec

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
identifier string
type string
date_created string
View JSON Schema on GitHub

JSON Schema

wikimedia-enterprise-event-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-event-schema.json",
  "title": "event",
  "description": "event schema from Wikimedia Enterprise API spec",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string",
      "example": "f7c737db-4b50-4982-8804-7c2b9fa89020"
    },
    "type": {
      "type": "string",
      "example": "update",
      "enum": [
        "update",
        "delete"
      ]
    },
    "date_created": {
      "type": "string",
      "example": "2026-03-18T12:38:23.437225+00:00"
    }
  }
}