changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "archived": {
+ "description": "Whether the repository is archived",
+ "type": "boolean"
+ },
+ "created_at": {
+ "description": "Repository creation timestamp",
+ "type": "string"
+ },
+ "default_branch": {
+ "description": "Default branch name",
+ "type": "string"
+ },
+ "description": {
+ "description": "Repository description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "forks": {
+ "description": "Number of forks",
+ "type": "number"
+ },
+ "full_name": {
+ "description": "Full repository name (owner/repo)",
+ "type": "string"
+ },
+ "homepage": {
+ "description": "Homepage URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "is_fork": {
+ "description": "Whether the repository is a fork",
+ "type": "boolean"
+ },
+ "language": {
+ "description": "Primary programming language",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "license": {
+ "description": "License SPDX ID or name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Repository name",
+ "type": "string"
+ },
+ "network": {
+ "description": "Network count",
+ "type": "number"
+ },
+ "open_issues": {
+ "description": "Number of open issues",
+ "type": "number"
+ },
+ "owner": {
+ "description": "Repository owner login",
+ "type": "string"
+ },
+ "owner_type": {
+ "description": "Owner type (User/Organization)",
+ "type": "string"
+ },
+ "pushed_at": {
+ "description": "Last push timestamp",
+ "type": "string"
+ },
+ "size_kb": {
+ "description": "Repository size in kilobytes",
+ "type": "number"
+ },
+ "stars": {
+ "description": "Number of stargazers",
+ "type": "number"
+ },
+ "subscribers": {
+ "description": "Number of subscribers",
+ "type": "number"
+ },
+ "topics": {
+ "description": "Repository topics/tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "updated_at": {
+ "description": "Last update timestamp",
+ "type": "string"
+ },
+ "url": {
+ "description": "Repository URL",
+ "type": "string"
+ },
+ "visibility": {
+ "description": "Repository visibility (public/private)",
+ "type": "string"
+ },
+ "watchers": {
+ "description": "Number of watchers",
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "full_name",
+ "description",
+ "url",
+ "homepage",
+ "stars",
+ "forks",
+ "watchers",
+ "open_issues",
+ "language",
+ "topics",
+ "default_branch",
+ "size_kb",
+ "visibility",
+ "archived",
+ "is_fork",
+ "license",
+ "owner",
+ "owner_type",
+ "created_at",
+ "updated_at",
+ "pushed_at",
+ "subscribers",
+ "network"
+ ],
+ "type": "object"
+}