Wikimedia · Schema

editor

Schema for editor from the Wikimedia Enterprise API

WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference

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

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