changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "incomplete_results": {
+ "description": "Whether the results are incomplete",
+ "type": "boolean"
+ },
+ "repos": {
+ "description": "List of matching repositories",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Repository description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "forks": {
+ "description": "Number of forks",
+ "type": "number"
+ },
+ "full_name": {
+ "description": "Full repository name (owner/repo)",
+ "type": "string"
+ },
+ "language": {
+ "description": "Primary programming language",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Repository name",
+ "type": "string"
+ },
+ "open_issues": {
+ "description": "Number of open issues",
+ "type": "number"
+ },
+ "stars": {
+ "description": "Number of stargazers",
+ "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"
+ }
+ },
+ "required": [
+ "name",
+ "full_name",
+ "description",
+ "stars",
+ "forks",
+ "language",
+ "url",
+ "topics",
+ "updated_at",
+ "open_issues"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_count": {
+ "description": "Total number of matching repositories",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total_count",
+ "incomplete_results",
+ "repos"
+ ],
+ "type": "object"
+}