### DrachenChronik Steam Activity Structure Source: https://github.com/drachenchronik/data/blob/main/README.md Details the JSON structure for Rainer's Steam account activity. It captures the start and end times, game ID and name, server IP, and the user's status, with status codes defined separately. ```JSON { "time_start": "ISO 8601 Zeit", "time_end": "ISO 8601 Zeit", "gameid": "Steam Game ID", "gameextrainfo": "Game Name", "gameserverip": "Server IP:Port", "status": "Status" } ``` -------------------------------- ### DrachenChronik Video Data Structure Source: https://github.com/drachenchronik/data/blob/main/README.md Defines the JSON structure for YouTube videos from DrachenChronik, including video metadata and comments. Each comment contains its own ID, text, author, author ID, and timestamp. ```JSON { "video_id": "ID des Videos", "title": "Video Titel", "description": "Video Beschreibung", "publish_date": "ISO 8601 Zeit", "duration": "Dauer in Sekunden", "channel_id": "Kanal ID", "channel_title": "Kanal Name", "comments": [ { "comment_id": "ID des Kommentars", "comment_text": "Kommentar Text", "comment_author": "Kanal Name", "comment_author_id": "Kanal ID", "comment_time": "ISO 8601 Zeit" } ] } ``` -------------------------------- ### DrachenChronik Lachschon Post Structure Source: https://github.com/drachenchronik/data/blob/main/README.md Specifies the JSON format for posts from the Drachenlord thread on the Lachschon forum. It includes the timestamp, username, and the text content of the post. ```JSON { "time": "ISO 8601 Zeit", "username": "Benutzername", "text": "Post Test" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.