changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "issues": {
+ "description": "Array of issues matching the search query",
+ "items": {
+ "properties": {
+ "assignee": {
+ "description": "Assignee username",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "author": {
+ "description": "Issue author username",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created_at": {
+ "description": "ISO timestamp of creation",
+ "type": "string"
+ },
+ "id": {
+ "description": "Issue global ID",
+ "type": "number"
+ },
+ "iid": {
+ "description": "Issue internal ID (within project)",
+ "type": "number"
+ },
+ "labels": {
+ "description": "Array of label names",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "project_id": {
+ "description": "Project ID",
+ "type": "number"
+ },
+ "state": {
+ "description": "Issue state (opened, closed, etc.)",
+ "type": "string"
+ },
+ "title": {
+ "description": "Issue title",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "ISO timestamp of last update",
+ "type": "string"
+ },
+ "url": {
+ "description": "Issue web URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "iid",
+ "title",
+ "state",
+ "labels",
+ "author",
+ "assignee",
+ "project_id",
+ "url",
+ "created_at",
+ "updated_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "issues"
+ ],
+ "type": "object"
+}