changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of items returned.",
+ "type": "integer"
+ },
+ "items": {
+ "items": {
+ "properties": {
+ "assignees": {
+ "description": "List of assignees",
+ "items": {
+ "properties": {
+ "id": {
+ "description": "Assignee ID",
+ "type": "number"
+ },
+ "login": {
+ "description": "Assignee login",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "body": {
+ "description": "Issue description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created_at": {
+ "description": "ISO timestamp of creation",
+ "type": "string"
+ },
+ "html_url": {
+ "description": "Issue web URL",
+ "type": "string"
+ },
+ "id": {
+ "description": "Issue ID",
+ "type": "number"
+ },
+ "labels": {
+ "description": "List of labels",
+ "items": {
+ "properties": {
+ "color": {
+ "description": "Label color (hex)",
+ "type": "string"
+ },
+ "name": {
+ "description": "Label name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "number": {
+ "description": "Issue number",
+ "type": "number"
+ },
+ "state": {
+ "description": "Issue state (open or closed)",
+ "type": "string"
+ },
+ "title": {
+ "description": "Issue title",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "ISO timestamp of last update",
+ "type": "string"
+ },
+ "user": {
+ "properties": {
+ "id": {
+ "description": "User ID",
+ "type": "number"
+ },
+ "login": {
+ "description": "User login",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items",
+ "count"
+ ],
+ "type": "object"
+}