changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "merge_requests": {
+ "items": {
+ "properties": {
+ "author": {
+ "description": "Author username",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created_at": {
+ "description": "Creation timestamp",
+ "type": "string"
+ },
+ "iid": {
+ "description": "Merge request internal ID",
+ "type": "number"
+ },
+ "merge_status": {
+ "description": "Merge status",
+ "type": "string"
+ },
+ "source_branch": {
+ "description": "Source branch name",
+ "type": "string"
+ },
+ "state": {
+ "description": "Merge request state (opened/closed/merged)",
+ "type": "string"
+ },
+ "target_branch": {
+ "description": "Target branch name",
+ "type": "string"
+ },
+ "title": {
+ "description": "Merge request title",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "Last update timestamp",
+ "type": "string"
+ },
+ "url": {
+ "description": "Merge request web URL",
+ "type": "string"
+ }
+ },
+ "required": [
+ "iid",
+ "title",
+ "state",
+ "author",
+ "source_branch",
+ "target_branch",
+ "merge_status",
+ "url",
+ "created_at",
+ "updated_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "merge_requests"
+ ],
+ "type": "object"
+}