{ "$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" ] }