wikidata_entity_property schema from Wikimedia Enterprise API spec
Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit
Properties
Name
Type
Description
identifier
string
Wikidata Property identifier (P-number, e.g. P31).
data_type
string
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.ty
labels
object
Key-value pairs with property labels in different languages
{
"$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-property-schema.json",
"title": "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"
]
}