1
0
mirror of synced 2026-01-06 15:03:36 -05:00

Source Github: Add undeclared columns to spec (#24523)

Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
This commit is contained in:
Serhii Chvaliuk
2023-05-08 22:22:57 +03:00
committed by GitHub
parent 01e075a281
commit 27c408e7fb
37 changed files with 725 additions and 443 deletions

View File

@@ -3,7 +3,7 @@
"type": "object",
"properties": {
"repository": {
"type": ["string"]
"type": "string"
},
"html_url": {
"type": ["null", "string"]
@@ -36,15 +36,18 @@
"$ref": "user.json"
},
"created_at": {
"type": ["null", "string"],
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": ["null", "string"],
"type": "string",
"format": "date-time"
},
"author_association": {
"type": ["null", "string"]
},
"reactions": {
"$ref": "reactions.json"
}
}
}