wikidata_sitelinks

Mapping of this Wikidata item to other Wikimedia project site URLs

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
title string Title of the linked page
badges array Badge identifiers for this sitelink
url string URL to the linked page
View JSON Schema on GitHub

JSON Schema

wikimedia-enterprise-wikidata-sitelinks-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-wikidata-sitelinks-schema.json",
  "title": "wikidata_sitelinks",
  "description": "Mapping of this Wikidata item to other Wikimedia project site URLs",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "Title of the linked page",
      "example": "Pentominium"
    },
    "badges": {
      "type": "array",
      "description": "Badge identifiers for this sitelink",
      "example": [
        "Q17437796",
        "Q6540326"
      ]
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL to the linked page",
      "example": "https://de.wikipedia.org/wiki/Pentominium"
    }
  },
  "required": [
    "title",
    "badges",
    "url"
  ]
}