Wikimedia · Schema

event

Schema for event from the Wikimedia Enterprise API

WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference

Properties

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

JSON Schema

event.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/event.json",
  "title": "event",
  "description": "Schema for event from the Wikimedia Enterprise API",
  "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-18 12:38:23.437225+00:00"
    }
  }
}