changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "languages": {
+ "description": "XP breakdown by programming language",
+ "items": {
+ "properties": {
+ "language": {
+ "description": "Programming language name",
+ "type": "string"
+ },
+ "xp": {
+ "description": "XP earned in this language",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "machines": {
+ "description": "XP breakdown by machine",
+ "items": {
+ "properties": {
+ "machine_name": {
+ "description": "Name of the machine",
+ "type": "string"
+ },
+ "xp": {
+ "description": "XP earned on this machine",
+ "type": "integer"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "user": {
+ "properties": {
+ "total_xp": {
+ "description": "Total XP earned across all languages",
+ "type": "integer"
+ },
+ "username": {
+ "description": "Username of the Code::Stats user",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+}