Schema for event from the Wikimedia Enterprise API
{ "$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" } } }