changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "archived": {
+ "description": "Whether the project is archived",
+ "type": "boolean"
+ },
+ "created_at": {
+ "description": "ISO timestamp of creation",
+ "type": "string"
+ },
+ "default_branch": {
+ "description": "Default branch name",
+ "type": "string"
+ },
+ "description": {
+ "description": "Project description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "forks": {
+ "description": "Fork count",
+ "type": "number"
+ },
+ "full_path": {
+ "description": "Project path with namespace",
+ "type": "string"
+ },
+ "id": {
+ "description": "Project numeric ID",
+ "type": "number"
+ },
+ "last_activity": {
+ "description": "ISO timestamp of last activity",
+ "type": "string"
+ },
+ "name": {
+ "description": "Project name",
+ "type": "string"
+ },
+ "namespace": {
+ "description": "Project namespace full path",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "open_issues": {
+ "description": "Open issues count",
+ "type": "number"
+ },
+ "stars": {
+ "description": "Star count",
+ "type": "number"
+ },
+ "topics": {
+ "description": "Project topics/tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "url": {
+ "description": "Project web URL",
+ "type": "string"
+ },
+ "visibility": {
+ "description": "Project visibility (public, private, etc.)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "full_path",
+ "description",
+ "url",
+ "stars",
+ "forks",
+ "open_issues",
+ "default_branch",
+ "visibility",
+ "archived",
+ "topics",
+ "namespace",
+ "created_at",
+ "last_activity"
+ ],
+ "type": "object"
+}