"""Thumbnails schemas.""" UPLOAD_CUSTOM_THUMBNAIL_POST_SCHEMA = { "type": "object", "properties": { "workflow_job_id": {"type": "integer", "minimum": 1}, "filename": {"type": "string", "minLength": 1}, }, "required": ["workflow_job_id", "filename"], }