changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "avatar_url": {
+ "description": "User's avatar URL",
+ "type": "string"
+ },
+ "bio": {
+ "description": "User's bio",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "blog": {
+ "description": "User's blog URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "company": {
+ "description": "User's company",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created_at": {
+ "description": "Account creation timestamp",
+ "type": "string"
+ },
+ "email": {
+ "description": "User's public email",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "followers": {
+ "description": "Number of followers",
+ "type": "number"
+ },
+ "following": {
+ "description": "Number of accounts following",
+ "type": "number"
+ },
+ "location": {
+ "description": "User's location",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "login": {
+ "description": "GitHub username",
+ "type": "string"
+ },
+ "name": {
+ "description": "User's display name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "public_gists": {
+ "description": "Number of public gists",
+ "type": "number"
+ },
+ "public_repos": {
+ "description": "Number of public repositories",
+ "type": "number"
+ },
+ "twitter": {
+ "description": "User's Twitter username",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "User type (User/Organization)",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "Last update timestamp",
+ "type": "string"
+ },
+ "url": {
+ "description": "User's GitHub profile URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "login",
+ "name",
+ "bio",
+ "company",
+ "location",
+ "email",
+ "blog",
+ "twitter",
+ "avatar_url",
+ "url",
+ "type",
+ "public_repos",
+ "public_gists",
+ "followers",
+ "following",
+ "created_at",
+ "updated_at"
+ ],
+ "type": "object"
+}