changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "projects": {
+ "items": {
+ "properties": {
+ "default_branch": {
+ "description": "Default branch name",
+ "type": "string"
+ },
+ "description": {
+ "description": "Project description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "forks": {
+ "description": "Fork count",
+ "type": "number"
+ },
+ "full_path": {
+ "description": "Full path with namespace",
+ "type": "string"
+ },
+ "id": {
+ "description": "Project ID",
+ "type": "number"
+ },
+ "last_activity": {
+ "description": "Last activity timestamp",
+ "type": "string"
+ },
+ "name": {
+ "description": "Project name",
+ "type": "string"
+ },
+ "stars": {
+ "description": "Star count",
+ "type": "number"
+ },
+ "url": {
+ "description": "Project web URL",
+ "type": "string"
+ },
+ "visibility": {
+ "description": "Project visibility (public/private/internal)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "full_path",
+ "description",
+ "stars",
+ "forks",
+ "url",
+ "default_branch",
+ "visibility",
+ "last_activity"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "projects"
+ ],
+ "type": "object"
+}