project

project schema from Wikimedia Enterprise API spec

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
identifier string
code string
name string
url string
in_language object
View JSON Schema on GitHub

JSON Schema

wikimedia-enterprise-project-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-project-schema.json",
  "title": "project",
  "description": "project schema from Wikimedia Enterprise API spec",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string",
      "example": "enwiki"
    },
    "code": {
      "type": "string",
      "example": "wiki"
    },
    "name": {
      "type": "string",
      "example": "Wikipedia"
    },
    "url": {
      "type": "string",
      "example": "https://en.wikipedia.org"
    },
    "in_language": {
      "$ref": "#/components/schemas/language"
    }
  }
}