changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "clan": {
+ "description": "User's clan name",
+ "type": "string"
+ },
+ "code_challenges": {
+ "properties": {
+ "total_authored": {
+ "description": "Total authored kata",
+ "type": "number"
+ },
+ "total_completed": {
+ "description": "Total completed challenges",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "honor": {
+ "description": "User's honor points",
+ "type": "number"
+ },
+ "leaderboard_position": {
+ "description": "Position on leaderboard",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "User's display name",
+ "type": "string"
+ },
+ "ranks": {
+ "properties": {
+ "languages": {
+ "description": "Language-specific ranks",
+ "type": "object"
+ },
+ "overall": {
+ "properties": {
+ "color": {
+ "description": "Rank color code",
+ "type": "string"
+ },
+ "name": {
+ "description": "Rank name",
+ "type": "string"
+ },
+ "rank": {
+ "description": "Overall rank number",
+ "type": "number"
+ },
+ "score": {
+ "description": "Overall score",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "skills": {
+ "description": "List of programming skills",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "username": {
+ "description": "Codewars username",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}