{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wikipedia/refs/heads/main/json-schema/rest-v1-list-read-schema.json", "title": "list_read", "description": "list_read schema from Wikimedia REST API", "type": "object", "properties": { "id": { "type": "integer", "example": 42 }, "name": { "type": "string", "example": "Planets" }, "description": { "type": "string", "example": "Planets of the Solar System" }, "created": { "type": "string", "format": "date-time", "description": "Creation date (in ISO 8601)" }, "updated": { "type": "string", "format": "date-time", "description": "Last modification date (in ISO 8601)" } }, "required": [ "id", "name", "created", "updated" ] }