Wikipedia / MediaWiki · JSON Structure

Wikimedia Enterprise Wikidata Entity Property Structure

wikidata_entity_property schema from Wikimedia Enterprise API spec

Type: object Properties: 3 Required: 2
Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

wikidata_entity_property is a JSON Structure definition published by Wikipedia / MediaWiki, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

identifier data_type labels

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikipedia/refs/heads/main/json-structure/wikimedia-enterprise-wikidata-entity-property-structure.json",
  "name": "wikidata_entity_property",
  "description": "wikidata_entity_property schema from Wikimedia Enterprise API spec",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string",
      "description": "Wikidata Property identifier (P-number, e.g. P31).",
      "example": "P31"
    },
    "data_type": {
      "type": "string",
      "description": "The expected data type of the value for this property, e.g. time, quantity, wikibase-item, url, string. The actual data type of the value for this property is found in statements.PID.property.value.type",
      "example": "time"
    },
    "labels": {
      "type": "object",
      "description": "Key-value pairs with property labels in different languages",
      "example": {
        "en": "instance of",
        "de": "Instanz von",
        "fr": "instance de"
      }
    }
  },
  "required": [
    "identifier",
    "data_type"
  ]
}