wikidata_entity_statement_reference

Reference supporting a Wikidata statement

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
identifier string unique identifier for the reference
parts array Parts that make up this reference
View JSON Schema on GitHub

JSON Schema

wikimedia-enterprise-wikidata-entity-statement-reference-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-entity-statement-reference-schema.json",
  "title": "wikidata_entity_statement_reference",
  "description": "Reference supporting a Wikidata statement",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string",
      "description": "unique identifier for the reference",
      "example": "63309730314f4c20bf6b1008fe8ffd2b155272b3"
    },
    "parts": {
      "type": "array",
      "description": "Parts that make up this reference",
      "items": {
        "$ref": "#/components/schemas/wikidata_entity_reference_part"
      }
    }
  },
  "required": [
    "identifier",
    "parts"
  ]
}