{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://en.wikisource.org/api/rest_v1/schemas/thumbnail", "title": "thumbnail", "type": "object", "properties": { "source": { "type": "string", "description": "Thumbnail image URI" }, "width": { "type": "integer", "description": "Thumbnail width" }, "height": { "type": "integer", "description": "Thumnail height" } }, "required": [ "height", "source", "width" ] }