part schema from Wikimedia Enterprise API spec
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wikipedia/refs/heads/main/json-schema/wikimedia-enterprise-part-schema.json", "title": "part", "description": "part schema from Wikimedia Enterprise API spec", "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" } } } }