changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "oneOf": [
+ {
+ "properties": {
+ "found": {
+ "description": "User not found",
+ "enum": [
+ false
+ ],
+ "type": "boolean"
+ },
+ "hint": {
+ "description": "Explanation of why user was not found",
+ "type": "string"
+ },
+ "site": {
+ "description": "StackExchange site slug",
+ "type": "string"
+ },
+ "user_id": {
+ "description": "The user ID",
+ "type": "number"
+ }
+ },
+ "required": [
+ "site",
+ "user_id",
+ "found",
+ "hint"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "activity": {
+ "properties": {
+ "answers": {
+ "description": "Number of answers given",
+ "type": "number"
+ },
+ "down_votes": {
+ "description": "Downvotes received",
+ "type": "number"
+ },
+ "profile_views": {
+ "description": "Profile view count",
+ "type": "number"
+ },
+ "questions": {
+ "description": "Number of questions asked",
+ "type": "number"
+ },
+ "up_votes": {
+ "description": "Upvotes received",
+ "type": "number"
+ }
+ },
+ "required": [
+ "questions",
+ "answers",
+ "up_votes",
+ "down_votes",
+ "profile_views"
+ ],
+ "type": "object"
+ },
+ "badges": {
+ "properties": {
+ "bronze": {
+ "description": "Bronze badges earned",
+ "type": "number"
+ },
+ "gold": {
+ "description": "Gold badges earned",
+ "type": "number"
+ },
+ "silver": {
+ "description": "Silver badges earned",
+ "type": "number"
+ }
+ },
+ "required": [
+ "gold",
+ "silver",
+ "bronze"
+ ],
+ "type": "object"
+ },
+ "created": {
+ "description": "ISO 8601 account creation timestamp",
+ "type": "string"
+ },
+ "display_name": {
+ "description": "User's display name",
+ "type": "string"
+ },
+ "found": {
+ "description": "User was found",
+ "enum": [
+ true
+ ],
+ "type": "boolean"
+ },
+ "last_access": {
+ "description": "ISO 8601 last access timestamp",
+ "type": "string"
+ },
+ "link": {
+ "description": "URL to user's profile",
+ "type": "string"
+ },
+ "location": {
+ "description": "User's location or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "quota_remaining": {
+ "description": "Remaining API quota or null",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "reputation": {
+ "description": "User's reputation score",
+ "type": "number"
+ },
+ "site": {
+ "description": "StackExchange site slug",
+ "type": "string"
+ },
+ "user_id": {
+ "description": "The user ID",
+ "type": "number"
+ },
+ "user_type": {
+ "description": "User type (e.g., 'registered') or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "website_url": {
+ "description": "User's website URL or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "site",
+ "found",
+ "user_id",
+ "display_name",
+ "reputation",
+ "badges",
+ "location",
+ "website_url",
+ "link",
+ "user_type",
+ "activity",
+ "created",
+ "last_access",
+ "quota_remaining"
+ ],
+ "type": "object"
+ }
+ ],
+ "type": "object"
+}