mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
chore: NODE-2585 - Generate Schema Files (no-changelog) (#14058)
This commit is contained in:
@@ -1,9 +1,128 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"commit": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"committer": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"parents": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"tree": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"verification": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"payload": {
|
||||
"type": "null"
|
||||
},
|
||||
"reason": {
|
||||
"type": "string"
|
||||
},
|
||||
"signature": {
|
||||
"type": "null"
|
||||
},
|
||||
"verified": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"verified_at": {
|
||||
"type": "null"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"content": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"git": {
|
||||
"type": "string"
|
||||
},
|
||||
"html": {
|
||||
"type": "string"
|
||||
},
|
||||
"self": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"download_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -16,187 +135,13 @@
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"download_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"self": {
|
||||
"type": "string"
|
||||
},
|
||||
"git": {
|
||||
"type": "string"
|
||||
},
|
||||
"html": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"self",
|
||||
"git",
|
||||
"html"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"path",
|
||||
"sha",
|
||||
"size",
|
||||
"url",
|
||||
"html_url",
|
||||
"git_url",
|
||||
"download_url",
|
||||
"type",
|
||||
"_links"
|
||||
]
|
||||
},
|
||||
"commit": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"email",
|
||||
"date"
|
||||
]
|
||||
},
|
||||
"committer": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"email",
|
||||
"date"
|
||||
]
|
||||
},
|
||||
"tree": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"sha",
|
||||
"url"
|
||||
]
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"parents": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"sha",
|
||||
"url",
|
||||
"html_url"
|
||||
]
|
||||
}
|
||||
},
|
||||
"verification": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"verified": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"reason": {
|
||||
"type": "string"
|
||||
},
|
||||
"signature": {
|
||||
"type": "null"
|
||||
},
|
||||
"payload": {
|
||||
"type": "null"
|
||||
},
|
||||
"verified_at": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"verified",
|
||||
"reason",
|
||||
"signature",
|
||||
"payload",
|
||||
"verified_at"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"sha",
|
||||
"node_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"author",
|
||||
"committer",
|
||||
"tree",
|
||||
"message",
|
||||
"parents",
|
||||
"verification"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
|
||||
@@ -1,61 +1,65 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"content": {
|
||||
"type": "null"
|
||||
},
|
||||
"commit": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"committer": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
"parents": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"email",
|
||||
"date"
|
||||
]
|
||||
}
|
||||
},
|
||||
"committer": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"email",
|
||||
"date"
|
||||
]
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"tree": {
|
||||
"type": "object",
|
||||
@@ -66,42 +70,16 @@
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"sha",
|
||||
"url"
|
||||
]
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"parents": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"sha",
|
||||
"url",
|
||||
"html_url"
|
||||
]
|
||||
}
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"verification": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"verified": {
|
||||
"type": "boolean"
|
||||
"payload": {
|
||||
"type": "null"
|
||||
},
|
||||
"reason": {
|
||||
"type": "string"
|
||||
@@ -109,33 +87,18 @@
|
||||
"signature": {
|
||||
"type": "null"
|
||||
},
|
||||
"payload": {
|
||||
"type": "null"
|
||||
"verified": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"verified_at": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"verified",
|
||||
"reason",
|
||||
"signature",
|
||||
"payload"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"sha",
|
||||
"node_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"author",
|
||||
"committer",
|
||||
"tree",
|
||||
"message",
|
||||
"parents",
|
||||
"verification"
|
||||
]
|
||||
}
|
||||
},
|
||||
"content": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
|
||||
@@ -1,9 +1,128 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"commit": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"committer": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"date": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"parents": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"tree": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"verification": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"payload": {
|
||||
"type": "null"
|
||||
},
|
||||
"reason": {
|
||||
"type": "string"
|
||||
},
|
||||
"signature": {
|
||||
"type": "null"
|
||||
},
|
||||
"verified": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"verified_at": {
|
||||
"type": "null"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"content": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"git": {
|
||||
"type": "string"
|
||||
},
|
||||
"html": {
|
||||
"type": "string"
|
||||
},
|
||||
"self": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"download_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -16,186 +135,13 @@
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"download_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"self": {
|
||||
"type": "string"
|
||||
},
|
||||
"git": {
|
||||
"type": "string"
|
||||
},
|
||||
"html": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"self",
|
||||
"git",
|
||||
"html"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"path",
|
||||
"sha",
|
||||
"size",
|
||||
"url",
|
||||
"html_url",
|
||||
"git_url",
|
||||
"download_url",
|
||||
"type",
|
||||
"_links"
|
||||
]
|
||||
},
|
||||
"commit": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"email",
|
||||
"date"
|
||||
]
|
||||
},
|
||||
"committer": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"date": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"email",
|
||||
"date"
|
||||
]
|
||||
},
|
||||
"tree": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"sha",
|
||||
"url"
|
||||
]
|
||||
},
|
||||
"message": {
|
||||
"type": "string"
|
||||
},
|
||||
"parents": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"sha",
|
||||
"url",
|
||||
"html_url"
|
||||
]
|
||||
}
|
||||
},
|
||||
"verification": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"verified": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"reason": {
|
||||
"type": "string"
|
||||
},
|
||||
"signature": {
|
||||
"type": "null"
|
||||
},
|
||||
"payload": {
|
||||
"type": "null"
|
||||
},
|
||||
"verified_at": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"verified",
|
||||
"reason",
|
||||
"signature",
|
||||
"payload"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"sha",
|
||||
"node_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"author",
|
||||
"committer",
|
||||
"tree",
|
||||
"message",
|
||||
"parents",
|
||||
"verification"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
|
||||
@@ -1,6 +1,26 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"git": {
|
||||
"type": "string"
|
||||
},
|
||||
"html": {
|
||||
"type": "string"
|
||||
},
|
||||
"self": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -13,36 +33,11 @@
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"self": {
|
||||
"type": "string"
|
||||
},
|
||||
"git": {
|
||||
"type": "string"
|
||||
},
|
||||
"html": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"self",
|
||||
"git",
|
||||
"html"
|
||||
]
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
|
||||
@@ -1,183 +1,18 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repository_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"number": {
|
||||
"type": "integer"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"following_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"node_id",
|
||||
"url",
|
||||
"name",
|
||||
"color",
|
||||
"default",
|
||||
"description"
|
||||
]
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
"active_lock_reason": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
@@ -189,164 +24,237 @@
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"milestone": {
|
||||
"type": "null"
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"author_association": {
|
||||
"type": "string"
|
||||
},
|
||||
"closed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"author_association": {
|
||||
"type": "string"
|
||||
},
|
||||
"active_lock_reason": {
|
||||
"closed_by": {
|
||||
"type": "null"
|
||||
},
|
||||
"closed_by": {
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"milestone": {
|
||||
"type": "null"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"number": {
|
||||
"type": "integer"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
},
|
||||
"reactions": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"total_count": {
|
||||
"-1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"+1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"-1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"laugh": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hooray": {
|
||||
"type": "integer"
|
||||
},
|
||||
"confused": {
|
||||
"type": "integer"
|
||||
},
|
||||
"eyes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"heart": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hooray": {
|
||||
"type": "integer"
|
||||
},
|
||||
"laugh": {
|
||||
"type": "integer"
|
||||
},
|
||||
"rocket": {
|
||||
"type": "integer"
|
||||
},
|
||||
"eyes": {
|
||||
"total_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"total_count",
|
||||
"+1",
|
||||
"-1",
|
||||
"laugh",
|
||||
"hooray",
|
||||
"confused",
|
||||
"heart",
|
||||
"rocket",
|
||||
"eyes"
|
||||
]
|
||||
}
|
||||
},
|
||||
"repository_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"state_reason": {
|
||||
"type": "null"
|
||||
},
|
||||
"timeline_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"state_reason": {
|
||||
"type": "null"
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"following_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"repository_url",
|
||||
"labels_url",
|
||||
"comments_url",
|
||||
"events_url",
|
||||
"html_url",
|
||||
"id",
|
||||
"node_id",
|
||||
"number",
|
||||
"title",
|
||||
"user",
|
||||
"labels",
|
||||
"state",
|
||||
"locked",
|
||||
"assignee",
|
||||
"assignees",
|
||||
"milestone",
|
||||
"comments",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"closed_at",
|
||||
"author_association",
|
||||
"active_lock_reason",
|
||||
"body",
|
||||
"closed_by",
|
||||
"reactions",
|
||||
"timeline_url",
|
||||
"performed_via_github_app",
|
||||
"state_reason"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -1,43 +1,78 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"author_association": {
|
||||
"type": "string"
|
||||
},
|
||||
"body": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"issue_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
},
|
||||
"reactions": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"-1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"+1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"confused": {
|
||||
"type": "integer"
|
||||
},
|
||||
"eyes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"heart": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hooray": {
|
||||
"type": "integer"
|
||||
},
|
||||
"laugh": {
|
||||
"type": "integer"
|
||||
},
|
||||
"rocket": {
|
||||
"type": "integer"
|
||||
},
|
||||
"total_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
@@ -49,131 +84,50 @@
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"author_association": {
|
||||
"type": "string"
|
||||
},
|
||||
"body": {
|
||||
"type": "string"
|
||||
},
|
||||
"reactions": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"total_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"+1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"-1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"laugh": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hooray": {
|
||||
"type": "integer"
|
||||
},
|
||||
"confused": {
|
||||
"type": "integer"
|
||||
},
|
||||
"heart": {
|
||||
"type": "integer"
|
||||
},
|
||||
"rocket": {
|
||||
"type": "integer"
|
||||
},
|
||||
"eyes": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"total_count",
|
||||
"+1",
|
||||
"-1",
|
||||
"laugh",
|
||||
"hooray",
|
||||
"confused",
|
||||
"heart",
|
||||
"rocket",
|
||||
"eyes"
|
||||
]
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"html_url",
|
||||
"issue_url",
|
||||
"id",
|
||||
"node_id",
|
||||
"user",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"author_association",
|
||||
"body",
|
||||
"reactions",
|
||||
"performed_via_github_app"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -1,181 +1,16 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repository_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"number": {
|
||||
"type": "integer"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"following_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"node_id",
|
||||
"url",
|
||||
"name",
|
||||
"color",
|
||||
"default",
|
||||
"description"
|
||||
]
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
"active_lock_reason": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignee": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
@@ -187,79 +22,59 @@
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
}
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
@@ -271,155 +86,228 @@
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"author_association": {
|
||||
"type": "string"
|
||||
},
|
||||
"active_lock_reason": {
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"number": {
|
||||
"type": "integer"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
},
|
||||
"reactions": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"total_count": {
|
||||
"-1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"+1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"-1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"laugh": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hooray": {
|
||||
"type": "integer"
|
||||
},
|
||||
"confused": {
|
||||
"type": "integer"
|
||||
},
|
||||
"eyes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"heart": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hooray": {
|
||||
"type": "integer"
|
||||
},
|
||||
"laugh": {
|
||||
"type": "integer"
|
||||
},
|
||||
"rocket": {
|
||||
"type": "integer"
|
||||
},
|
||||
"eyes": {
|
||||
"total_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"total_count",
|
||||
"+1",
|
||||
"-1",
|
||||
"laugh",
|
||||
"hooray",
|
||||
"confused",
|
||||
"heart",
|
||||
"rocket",
|
||||
"eyes"
|
||||
]
|
||||
}
|
||||
},
|
||||
"repository_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"timeline_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"following_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"repository_url",
|
||||
"labels_url",
|
||||
"comments_url",
|
||||
"events_url",
|
||||
"html_url",
|
||||
"id",
|
||||
"node_id",
|
||||
"number",
|
||||
"title",
|
||||
"user",
|
||||
"labels",
|
||||
"state",
|
||||
"locked",
|
||||
"assignee",
|
||||
"assignees",
|
||||
"milestone",
|
||||
"comments",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"closed_at",
|
||||
"author_association",
|
||||
"active_lock_reason",
|
||||
"body",
|
||||
"closed_by",
|
||||
"reactions",
|
||||
"timeline_url",
|
||||
"performed_via_github_app",
|
||||
"state_reason"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -1,43 +1,169 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
"allow_forking": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"node_id": {
|
||||
"archive_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"assignees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"blobs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"branches_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"clone_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"collaborators_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"compare_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contents_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contributors_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"default_branch": {
|
||||
"type": "string"
|
||||
},
|
||||
"deployments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"disabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"downloads_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"fork": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"forks": {
|
||||
"type": "integer"
|
||||
},
|
||||
"forks_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"forks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"full_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"private": {
|
||||
"git_commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_refs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"has_discussions": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_downloads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_issues": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_pages": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_projects": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_wiki": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hooks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_template": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"issue_comment_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issues_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"keys_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"languages_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"merges_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"milestones_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"mirror_url": {
|
||||
"type": "null"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"notifications_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"open_issues": {
|
||||
"type": "integer"
|
||||
},
|
||||
"open_issues_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"owner": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
@@ -49,265 +175,50 @@
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"fork": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"forks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"keys_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"collaborators_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"teams_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"hooks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"assignees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"branches_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"blobs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_refs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"trees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"statuses_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"languages_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"stargazers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contributors_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscription_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_comment_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contents_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"compare_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"merges_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"archive_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"downloads_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issues_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"pulls_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"milestones_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"notifications_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"releases_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"deployments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"pushed_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"ssh_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"clone_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"svn_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"stargazers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"watchers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"has_issues": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_projects": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_downloads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_wiki": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_pages": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_discussions": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"forks_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"mirror_url": {
|
||||
"type": "null"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"disabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"open_issues_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"allow_forking": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_template": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"web_commit_signoff_required": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"topics": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"visibility": {
|
||||
"type": "string"
|
||||
},
|
||||
"forks": {
|
||||
"type": "integer"
|
||||
},
|
||||
"open_issues": {
|
||||
"type": "integer"
|
||||
},
|
||||
"watchers": {
|
||||
"type": "integer"
|
||||
},
|
||||
"default_branch": {
|
||||
"type": "string"
|
||||
},
|
||||
"permissions": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -317,48 +228,39 @@
|
||||
"maintain": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pull": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"push": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"triage": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pull": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"admin",
|
||||
"maintain",
|
||||
"push",
|
||||
"triage",
|
||||
"pull"
|
||||
]
|
||||
}
|
||||
},
|
||||
"private": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pulls_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"pushed_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"releases_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"security_and_analysis": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"secret_scanning": {
|
||||
"advanced_security": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status"
|
||||
]
|
||||
},
|
||||
"secret_scanning_push_protection": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status"
|
||||
]
|
||||
}
|
||||
},
|
||||
"dependabot_security_updates": {
|
||||
"type": "object",
|
||||
@@ -366,10 +268,15 @@
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status"
|
||||
]
|
||||
}
|
||||
},
|
||||
"secret_scanning": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"secret_scanning_non_provider_patterns": {
|
||||
"type": "object",
|
||||
@@ -377,10 +284,15 @@
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status"
|
||||
]
|
||||
}
|
||||
},
|
||||
"secret_scanning_push_protection": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"secret_scanning_validity_checks": {
|
||||
"type": "object",
|
||||
@@ -388,30 +300,66 @@
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status"
|
||||
]
|
||||
},
|
||||
"advanced_security": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"secret_scanning",
|
||||
"secret_scanning_push_protection",
|
||||
"dependabot_security_updates",
|
||||
"secret_scanning_non_provider_patterns",
|
||||
"secret_scanning_validity_checks"
|
||||
]
|
||||
}
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"ssh_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"stargazers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"stargazers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"statuses_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscription_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"svn_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"teams_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"topics": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"trees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"visibility": {
|
||||
"type": "string"
|
||||
},
|
||||
"watchers": {
|
||||
"type": "integer"
|
||||
},
|
||||
"watchers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"web_commit_signoff_required": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
|
||||
@@ -1,166 +1,51 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"assets_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"upload_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"following_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"tag_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"target_commitish": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"draft": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"prerelease": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"assets": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"browser_download_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"content_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"download_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
"label": {
|
||||
"type": "null"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"label": {
|
||||
"type": "null"
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"uploader": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
@@ -172,121 +57,160 @@
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"user_view_type",
|
||||
"site_admin"
|
||||
]
|
||||
}
|
||||
},
|
||||
"content_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"download_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"browser_download_url": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"assets_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"id",
|
||||
"node_id",
|
||||
"name",
|
||||
"label",
|
||||
"uploader",
|
||||
"content_type",
|
||||
"state",
|
||||
"size",
|
||||
"download_count",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"browser_download_url"
|
||||
]
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"following_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"body": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"draft": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"mentions_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"prerelease": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"tag_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"target_commitish": {
|
||||
"type": "string"
|
||||
},
|
||||
"upload_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"assets_url",
|
||||
"upload_url",
|
||||
"html_url",
|
||||
"id",
|
||||
"author",
|
||||
"node_id",
|
||||
"tag_name",
|
||||
"target_commitish",
|
||||
"name",
|
||||
"draft",
|
||||
"prerelease",
|
||||
"created_at",
|
||||
"published_at",
|
||||
"assets",
|
||||
"tarball_url",
|
||||
"zipball_url",
|
||||
"body"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -1,43 +1,196 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
"allow_auto_merge": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"node_id": {
|
||||
"allow_forking": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"allow_merge_commit": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"allow_rebase_merge": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"allow_squash_merge": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"allow_update_branch": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"archive_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"assignees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"blobs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"branches_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"clone_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"collaborators_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"compare_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contents_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contributors_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"default_branch": {
|
||||
"type": "string"
|
||||
},
|
||||
"delete_branch_on_merge": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"deployments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"disabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"downloads_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"fork": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"forks": {
|
||||
"type": "integer"
|
||||
},
|
||||
"forks_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"forks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"full_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"private": {
|
||||
"git_commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_refs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"has_discussions": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_downloads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_issues": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_pages": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_projects": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_wiki": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hooks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_template": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"issue_comment_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issues_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"keys_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"languages_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_commit_message": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_commit_title": {
|
||||
"type": "string"
|
||||
},
|
||||
"merges_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"milestones_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"mirror_url": {
|
||||
"type": "null"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"network_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"notifications_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"open_issues": {
|
||||
"type": "integer"
|
||||
},
|
||||
"open_issues_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"owner": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
@@ -49,266 +202,50 @@
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"user_view_type",
|
||||
"site_admin"
|
||||
]
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"fork": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"forks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"keys_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"collaborators_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"teams_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"hooks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"assignees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"branches_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"blobs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_refs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"trees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"statuses_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"languages_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"stargazers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contributors_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscription_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_comment_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contents_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"compare_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"merges_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"archive_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"downloads_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issues_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"pulls_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"milestones_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"notifications_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"releases_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"deployments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"pushed_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"ssh_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"clone_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"svn_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"stargazers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"watchers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"has_issues": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_projects": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_downloads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_wiki": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_pages": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_discussions": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"forks_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"mirror_url": {
|
||||
"type": "null"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"disabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"open_issues_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"allow_forking": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_template": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"web_commit_signoff_required": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"topics": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"visibility": {
|
||||
"type": "string"
|
||||
},
|
||||
"forks": {
|
||||
"type": "integer"
|
||||
},
|
||||
"open_issues": {
|
||||
"type": "integer"
|
||||
},
|
||||
"watchers": {
|
||||
"type": "integer"
|
||||
},
|
||||
"default_branch": {
|
||||
"type": "string"
|
||||
},
|
||||
"permissions": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -318,47 +255,31 @@
|
||||
"maintain": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pull": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"push": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"triage": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pull": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"admin",
|
||||
"maintain",
|
||||
"push",
|
||||
"triage",
|
||||
"pull"
|
||||
]
|
||||
}
|
||||
},
|
||||
"temp_clone_token": {
|
||||
"private": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pulls_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"allow_squash_merge": {
|
||||
"type": "boolean"
|
||||
"pushed_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"allow_merge_commit": {
|
||||
"type": "boolean"
|
||||
"releases_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"allow_rebase_merge": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"allow_auto_merge": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"delete_branch_on_merge": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"allow_update_branch": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"use_squash_pr_title_as_default": {
|
||||
"type": "boolean"
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"squash_merge_commit_message": {
|
||||
"type": "string"
|
||||
@@ -366,17 +287,68 @@
|
||||
"squash_merge_commit_title": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_commit_message": {
|
||||
"ssh_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_commit_title": {
|
||||
"type": "string"
|
||||
},
|
||||
"network_count": {
|
||||
"stargazers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"stargazers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"statuses_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"subscribers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscription_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"svn_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"teams_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"temp_clone_token": {
|
||||
"type": "string"
|
||||
},
|
||||
"topics": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"trees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"use_squash_pr_title_as_default": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"visibility": {
|
||||
"type": "string"
|
||||
},
|
||||
"watchers": {
|
||||
"type": "integer"
|
||||
},
|
||||
"watchers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"web_commit_signoff_required": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
|
||||
@@ -1,183 +1,18 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repository_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"number": {
|
||||
"type": "integer"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"following_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"node_id",
|
||||
"url",
|
||||
"name",
|
||||
"color",
|
||||
"default",
|
||||
"description"
|
||||
]
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
"active_lock_reason": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
@@ -189,123 +24,227 @@
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"author_association": {
|
||||
"type": "string"
|
||||
},
|
||||
"active_lock_reason": {
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"default": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"number": {
|
||||
"type": "integer"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
},
|
||||
"reactions": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"total_count": {
|
||||
"-1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"+1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"-1": {
|
||||
"type": "integer"
|
||||
},
|
||||
"laugh": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hooray": {
|
||||
"type": "integer"
|
||||
},
|
||||
"confused": {
|
||||
"type": "integer"
|
||||
},
|
||||
"eyes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"heart": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hooray": {
|
||||
"type": "integer"
|
||||
},
|
||||
"laugh": {
|
||||
"type": "integer"
|
||||
},
|
||||
"rocket": {
|
||||
"type": "integer"
|
||||
},
|
||||
"eyes": {
|
||||
"total_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"url",
|
||||
"total_count",
|
||||
"+1",
|
||||
"-1",
|
||||
"laugh",
|
||||
"hooray",
|
||||
"confused",
|
||||
"heart",
|
||||
"rocket",
|
||||
"eyes"
|
||||
]
|
||||
}
|
||||
},
|
||||
"repository_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"timeline_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"following_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
|
||||
70
packages/nodes-base/nodes/Github/__schema__/v1.0.0/repository/getLicense.json
vendored
Normal file
70
packages/nodes-base/nodes/Github/__schema__/v1.0.0/repository/getLicense.json
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"git": {
|
||||
"type": "string"
|
||||
},
|
||||
"html": {
|
||||
"type": "string"
|
||||
},
|
||||
"self": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"content": {
|
||||
"type": "string"
|
||||
},
|
||||
"download_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"encoding": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"license": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"key": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"spdx_id": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
@@ -1,43 +1,169 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
"allow_forking": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"node_id": {
|
||||
"archive_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"assignees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"blobs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"branches_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"clone_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"collaborators_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"compare_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contents_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contributors_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"default_branch": {
|
||||
"type": "string"
|
||||
},
|
||||
"deployments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"disabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"downloads_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"fork": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"forks": {
|
||||
"type": "integer"
|
||||
},
|
||||
"forks_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"forks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"full_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"private": {
|
||||
"git_commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_refs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"has_discussions": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_downloads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_issues": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_pages": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_projects": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_wiki": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"hooks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_template": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"issue_comment_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issues_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"keys_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"languages_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"merges_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"milestones_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"mirror_url": {
|
||||
"type": "null"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"notifications_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"open_issues": {
|
||||
"type": "integer"
|
||||
},
|
||||
"open_issues_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"owner": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"followers_url": {
|
||||
@@ -49,265 +175,50 @@
|
||||
"gists_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"gravatar_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"login": {
|
||||
"type": "string"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"starred_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscriptions_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"organizations_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"repos_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"received_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_view_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"site_admin": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"login",
|
||||
"id",
|
||||
"node_id",
|
||||
"avatar_url",
|
||||
"gravatar_id",
|
||||
"url",
|
||||
"html_url",
|
||||
"followers_url",
|
||||
"following_url",
|
||||
"gists_url",
|
||||
"starred_url",
|
||||
"subscriptions_url",
|
||||
"organizations_url",
|
||||
"repos_url",
|
||||
"events_url",
|
||||
"received_events_url",
|
||||
"type",
|
||||
"site_admin"
|
||||
]
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"fork": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"forks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"keys_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"collaborators_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"teams_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"hooks_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"events_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"assignees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"branches_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"blobs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_refs_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"trees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"statuses_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"languages_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"stargazers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contributors_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscription_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_commits_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"comments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_comment_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"contents_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"compare_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"merges_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"archive_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"downloads_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issues_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"pulls_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"milestones_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"notifications_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"releases_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"deployments_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"pushed_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"git_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"ssh_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"clone_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"svn_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"stargazers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"watchers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"has_issues": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_projects": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_downloads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_wiki": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_pages": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_discussions": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"forks_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"mirror_url": {
|
||||
"type": "null"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"disabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"open_issues_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"allow_forking": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_template": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"web_commit_signoff_required": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"topics": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"visibility": {
|
||||
"type": "string"
|
||||
},
|
||||
"forks": {
|
||||
"type": "integer"
|
||||
},
|
||||
"open_issues": {
|
||||
"type": "integer"
|
||||
},
|
||||
"watchers": {
|
||||
"type": "integer"
|
||||
},
|
||||
"default_branch": {
|
||||
"type": "string"
|
||||
},
|
||||
"permissions": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -317,30 +228,86 @@
|
||||
"maintain": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pull": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"push": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"triage": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pull": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"admin",
|
||||
"maintain",
|
||||
"push",
|
||||
"triage",
|
||||
"pull"
|
||||
]
|
||||
}
|
||||
},
|
||||
"private": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pulls_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"pushed_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"releases_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"ssh_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"stargazers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"stargazers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"statuses_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribers_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscription_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"svn_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"tags_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"teams_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"topics": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"trees_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"visibility": {
|
||||
"type": "string"
|
||||
},
|
||||
"watchers": {
|
||||
"type": "integer"
|
||||
},
|
||||
"watchers_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"web_commit_signoff_required": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"keys_url",
|
||||
"events_url",
|
||||
"issues_url",
|
||||
"notifications_url"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -9,13 +9,22 @@
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"badge_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
@@ -24,40 +33,15 @@
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"badge_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"node_id",
|
||||
"name",
|
||||
"path",
|
||||
"state",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"url",
|
||||
"html_url",
|
||||
"badge_url"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"total_count",
|
||||
"workflows"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user