Wikimedia · Schema

wikidata_entity_reference_part

Schema for wikidata_entity_reference_part from the Wikimedia Enterprise API

WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference

Properties

Name Type Description
property object The property this reference part refers to. Has the same substructure as statements.PID.property
value object The value of the reference part. Has the same substructure as statements.PROPERTYID.value
View JSON Schema on GitHub

JSON Schema

wikidata_entity_reference_part.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/wikidata_entity_reference_part.json",
  "title": "wikidata_entity_reference_part",
  "description": "Schema for wikidata_entity_reference_part from the Wikimedia Enterprise API",
  "type": "object",
  "required": [
    "property",
    "value"
  ],
  "properties": {
    "property": {
      "description": "The property this reference part refers to. Has the same substructure as statements.PID.property",
      "$ref": "#/components/schemas/wikidata_entity_property"
    },
    "value": {
      "description": "The value of the reference part. Has the same substructure as statements.PROPERTYID.value",
      "$ref": "#/components/schemas/wikidata_entity_value"
    }
  }
}