changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total number of issues returned",
+ "type": "number"
+ },
+ "issues": {
+ "description": "List of issues",
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Issue author login",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "comments": {
+ "description": "Number of comments",
+ "type": "number"
+ },
+ "created_at": {
+ "description": "Issue creation timestamp",
+ "type": "string"
+ },
+ "labels": {
+ "description": "Issue labels",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "number": {
+ "description": "Issue number",
+ "type": "number"
+ },
+ "state": {
+ "description": "Issue state (open/closed)",
+ "type": "string"
+ },
+ "title": {
+ "description": "Issue title",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "Last update timestamp",
+ "type": "string"
+ },
+ "url": {
+ "description": "Issue URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "number",
+ "title",
+ "state",
+ "labels",
+ "author",
+ "comments",
+ "url",
+ "created_at",
+ "updated_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "owner": {
+ "description": "Repository owner",
+ "type": "string"
+ },
+ "repo": {
+ "description": "Repository name",
+ "type": "string"
+ },
+ "state": {
+ "description": "Issue state filter (open/closed/all)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "owner",
+ "repo",
+ "state",
+ "count",
+ "issues"
+ ],
+ "type": "object"
+}