Skip to content

Commit

Permalink
fix: body of a pull_request may be null
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jul 5, 2022
1 parent 6d11ea9 commit cd18eae
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"locked": { "type": "boolean" },
"title": { "type": "string" },
"user": { "$ref": "user.schema.json" },
"body": { "type": "string" },
"body": { "type": ["string", "null"] },
"created_at": { "type": "string", "format": "date-time" },
"updated_at": { "type": "string", "format": "date-time" },
"closed_at": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"locked": { "type": "boolean" },
"title": { "type": "string" },
"user": { "$ref": "common/user.schema.json" },
"body": { "type": "string" },
"body": { "type": ["string", "null"] },
"created_at": { "type": "string", "format": "date-time" },
"updated_at": { "type": "string", "format": "date-time" },
"closed_at": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"locked": { "type": "boolean" },
"title": { "type": "string" },
"user": { "$ref": "common/user.schema.json" },
"body": { "type": "string" },
"body": { "type": ["string", "null"] },
"created_at": { "type": "string", "format": "date-time" },
"updated_at": { "type": "string", "format": "date-time" },
"closed_at": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"locked": { "type": "boolean" },
"title": { "type": "string" },
"user": { "$ref": "common/user.schema.json" },
"body": { "type": "string" },
"body": { "type": ["string", "null"] },
"created_at": { "type": "string", "format": "date-time" },
"updated_at": { "type": "string", "format": "date-time" },
"closed_at": {
Expand Down

0 comments on commit cd18eae

Please sign in to comment.