Wikimedia · Schema
part
Schema for part from the Wikimedia Enterprise API
WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| type | string | |
| value | string | |
| values | array | |
| has_parts | array | |
| images | array | |
| links | array | |
| citations | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/part.json",
"title": "part",
"description": "Schema for part from the Wikimedia Enterprise API",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"type": "string"
},
"values": {
"type": "array",
"items": {
"type": "string"
}
},
"has_parts": {
"type": "array",
"items": {
"type": "object"
}
},
"images": {
"type": "array",
"items": {
"$ref": "#/components/schemas/image"
}
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/link"
}
},
"citations": {
"type": "array",
"items": {
"$ref": "#/components/schemas/citation"
}
}
}
}