changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "issues": {
+ "items": {
+ "properties": {
+ "assignee": {
+ "description": "Assignee username",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "author": {
+ "description": "Author username",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created_at": {
+ "description": "Creation timestamp",
+ "type": "string"
+ },
+ "iid": {
+ "description": "Issue internal ID",
+ "type": "number"
+ },
+ "labels": {
+ "description": "Issue labels",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "state": {
+ "description": "Issue state (opened/closed)",
+ "type": "string"
+ },
+ "title": {
+ "description": "Issue title",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "Last update timestamp",
+ "type": "string"
+ },
+ "url": {
+ "description": "Issue web URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "iid",
+ "title",
+ "state",
+ "labels",
+ "assignee",
+ "author",
+ "url",
+ "created_at",
+ "updated_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "issues"
+ ],
+ "type": "object"
+}