{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wikipedia/refs/heads/main/json-schema/wikimedia-enterprise-version-schema.json", "title": "version", "description": "version schema from Wikimedia Enterprise API spec", "type": "object", "properties": { "comment": { "type": "string" }, "editor": { "$ref": "#/components/schemas/editor" }, "identifier": { "type": "integer" }, "is_flagged_stable": { "type": "boolean" }, "is_minor_edit": { "type": "boolean" }, "noindex": { "type": "boolean" }, "scores": { "$ref": "#/components/schemas/scores" }, "maintenance_tags": { "$ref": "#/components/schemas/maintenance_tags" }, "tags": { "items": { "type": "string" }, "type": "array" } } }