{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/pdfshift/refs/heads/main/json-schema/logs.json", "title": "Logs", "type": "object", "properties": { "success": { "type": "boolean" }, "logs": { "type": "object", "properties": { "has_more": { "type": "boolean" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/LogObject" } }, "limit": { "type": "integer", "format": "int32" }, "page": { "type": "integer", "format": "int32" }, "total": { "type": "integer", "format": "int32" } } } } }