editor

editor schema from Wikimedia Enterprise API spec

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
date_started string
edit_count integer
groups array
identifier integer
is_anonymous boolean
is_bot boolean
name string
View JSON Schema on GitHub

JSON Schema

wikimedia-enterprise-editor-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-editor-schema.json",
  "title": "editor",
  "description": "editor schema from Wikimedia Enterprise API spec",
  "type": "object",
  "properties": {
    "date_started": {
      "type": "string"
    },
    "edit_count": {
      "type": "integer"
    },
    "groups": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "identifier": {
      "type": "integer"
    },
    "is_anonymous": {
      "type": "boolean"
    },
    "is_bot": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    }
  }
}