wikidata_entity_reference_part

wikidata_entity_reference_part schema from Wikimedia Enterprise API spec

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

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

wikimedia-enterprise-wikidata-entity-reference-part-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-reference-part-schema.json",
  "title": "wikidata_entity_reference_part",
  "description": "wikidata_entity_reference_part schema from Wikimedia Enterprise API spec",
  "type": "object",
  "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"
    }
  },
  "required": [
    "property",
    "value"
  ]
}