diff options
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/views/api/bot/clean.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pysite/views/api/bot/clean.py b/pysite/views/api/bot/clean.py index f914c03c..2ee3f62d 100644 --- a/pysite/views/api/bot/clean.py +++ b/pysite/views/api/bot/clean.py @@ -10,9 +10,12 @@ POST_SCHEMA = Schema({ 'log_data': [ { "author": str, + "user_id": str, "content": str, + "role": str, "timestamp": str, - "role": str + "embeds": object, + "attachments": [str], } ] }) |