mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat: Generate Schema Files - 18113073 (no-changelog) (#12927)
Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
201
packages/nodes-base/nodes/Github/__schema__/v1.0.0/file/create.json
vendored
Normal file
201
packages/nodes-base/nodes/Github/__schema__/v1.0.0/file/create.json
vendored
Normal file
@@ -0,0 +1,201 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"content": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
201
packages/nodes-base/nodes/Github/__schema__/v1.0.0/file/edit.json
vendored
Normal file
201
packages/nodes-base/nodes/Github/__schema__/v1.0.0/file/edit.json
vendored
Normal file
@@ -0,0 +1,201 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"content": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
48
packages/nodes-base/nodes/Github/__schema__/v1.0.0/file/list.json
vendored
Normal file
48
packages/nodes-base/nodes/Github/__schema__/v1.0.0/file/list.json
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
},
|
||||
"sha": {
|
||||
"type": "string"
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
348
packages/nodes-base/nodes/Github/__schema__/v1.0.0/issue/create.json
vendored
Normal file
348
packages/nodes-base/nodes/Github/__schema__/v1.0.0/issue/create.json
vendored
Normal file
@@ -0,0 +1,348 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"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": {
|
||||
"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"
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
||||
},
|
||||
"milestone": {
|
||||
"type": "null"
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"closed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"author_association": {
|
||||
"type": "string"
|
||||
},
|
||||
"active_lock_reason": {
|
||||
"type": "null"
|
||||
},
|
||||
"closed_by": {
|
||||
"type": "null"
|
||||
},
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"timeline_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
},
|
||||
"state_reason": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
||||
178
packages/nodes-base/nodes/Github/__schema__/v1.0.0/issue/createComment.json
vendored
Normal file
178
packages/nodes-base/nodes/Github/__schema__/v1.0.0/issue/createComment.json
vendored
Normal file
@@ -0,0 +1,178 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"html_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"issue_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
||||
342
packages/nodes-base/nodes/Github/__schema__/v1.0.0/issue/get.json
vendored
Normal file
342
packages/nodes-base/nodes/Github/__schema__/v1.0.0/issue/get.json
vendored
Normal file
@@ -0,0 +1,342 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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": {
|
||||
"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"
|
||||
]
|
||||
}
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"author_association": {
|
||||
"type": "string"
|
||||
},
|
||||
"active_lock_reason": {
|
||||
"type": "null"
|
||||
},
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"timeline_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
||||
339
packages/nodes-base/nodes/Github/__schema__/v1.0.0/organization/getRepositories.json
vendored
Normal file
339
packages/nodes-base/nodes/Github/__schema__/v1.0.0/organization/getRepositories.json
vendored
Normal file
@@ -0,0 +1,339 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"full_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"private": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"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": {
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"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": {
|
||||
"admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"maintain": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"push": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"triage": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pull": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"admin",
|
||||
"maintain",
|
||||
"push",
|
||||
"triage",
|
||||
"pull"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
149
packages/nodes-base/nodes/Github/__schema__/v1.0.0/release/getAll.json
vendored
Normal file
149
packages/nodes-base/nodes/Github/__schema__/v1.0.0/release/getAll.json
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"body": {
|
||||
"type": "string"
|
||||
},
|
||||
"mentions_count": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
]
|
||||
}
|
||||
465
packages/nodes-base/nodes/Github/__schema__/v1.0.0/repository/get.json
vendored
Normal file
465
packages/nodes-base/nodes/Github/__schema__/v1.0.0/repository/get.json
vendored
Normal file
@@ -0,0 +1,465 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"full_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"private": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"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": {
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"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": {
|
||||
"admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"maintain": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"push": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"triage": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pull": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"admin",
|
||||
"maintain",
|
||||
"push",
|
||||
"triage",
|
||||
"pull"
|
||||
]
|
||||
},
|
||||
"temp_clone_token": {
|
||||
"type": "string"
|
||||
},
|
||||
"allow_squash_merge": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"allow_merge_commit": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"squash_merge_commit_message": {
|
||||
"type": "string"
|
||||
},
|
||||
"squash_merge_commit_title": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_commit_message": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_commit_title": {
|
||||
"type": "string"
|
||||
},
|
||||
"network_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"subscribers_count": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"node_id",
|
||||
"name",
|
||||
"full_name",
|
||||
"private",
|
||||
"owner",
|
||||
"html_url",
|
||||
"description",
|
||||
"fork",
|
||||
"url",
|
||||
"forks_url",
|
||||
"keys_url",
|
||||
"collaborators_url",
|
||||
"teams_url",
|
||||
"hooks_url",
|
||||
"issue_events_url",
|
||||
"events_url",
|
||||
"assignees_url",
|
||||
"branches_url",
|
||||
"tags_url",
|
||||
"blobs_url",
|
||||
"git_tags_url",
|
||||
"git_refs_url",
|
||||
"trees_url",
|
||||
"statuses_url",
|
||||
"languages_url",
|
||||
"stargazers_url",
|
||||
"contributors_url",
|
||||
"subscribers_url",
|
||||
"subscription_url",
|
||||
"commits_url",
|
||||
"git_commits_url",
|
||||
"comments_url",
|
||||
"issue_comment_url",
|
||||
"contents_url",
|
||||
"compare_url",
|
||||
"merges_url",
|
||||
"archive_url",
|
||||
"downloads_url",
|
||||
"issues_url",
|
||||
"pulls_url",
|
||||
"milestones_url",
|
||||
"notifications_url",
|
||||
"labels_url",
|
||||
"releases_url",
|
||||
"deployments_url",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"pushed_at",
|
||||
"git_url",
|
||||
"ssh_url",
|
||||
"clone_url",
|
||||
"svn_url",
|
||||
"homepage",
|
||||
"size",
|
||||
"stargazers_count",
|
||||
"watchers_count",
|
||||
"language",
|
||||
"has_issues",
|
||||
"has_projects",
|
||||
"has_downloads",
|
||||
"has_wiki",
|
||||
"has_pages",
|
||||
"has_discussions",
|
||||
"forks_count",
|
||||
"mirror_url",
|
||||
"archived",
|
||||
"disabled",
|
||||
"open_issues_count",
|
||||
"license",
|
||||
"allow_forking",
|
||||
"is_template",
|
||||
"web_commit_signoff_required",
|
||||
"topics",
|
||||
"visibility",
|
||||
"forks",
|
||||
"open_issues",
|
||||
"watchers",
|
||||
"default_branch",
|
||||
"permissions",
|
||||
"network_count",
|
||||
"subscribers_count"
|
||||
]
|
||||
}
|
||||
311
packages/nodes-base/nodes/Github/__schema__/v1.0.0/repository/getIssues.json
vendored
Normal file
311
packages/nodes-base/nodes/Github/__schema__/v1.0.0/repository/getIssues.json
vendored
Normal file
@@ -0,0 +1,311 @@
|
||||
{
|
||||
"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"
|
||||
},
|
||||
"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": {
|
||||
"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"
|
||||
]
|
||||
}
|
||||
},
|
||||
"comments": {
|
||||
"type": "integer"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"author_association": {
|
||||
"type": "string"
|
||||
},
|
||||
"active_lock_reason": {
|
||||
"type": "null"
|
||||
},
|
||||
"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"
|
||||
]
|
||||
},
|
||||
"timeline_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"performed_via_github_app": {
|
||||
"type": "null"
|
||||
}
|
||||
}
|
||||
}
|
||||
342
packages/nodes-base/nodes/Github/__schema__/v1.0.0/user/getRepositories.json
vendored
Normal file
342
packages/nodes-base/nodes/Github/__schema__/v1.0.0/user/getRepositories.json
vendored
Normal file
@@ -0,0 +1,342 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"node_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"full_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"private": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"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": {
|
||||
"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"
|
||||
},
|
||||
"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": {
|
||||
"admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"maintain": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"push": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"triage": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pull": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"admin",
|
||||
"maintain",
|
||||
"push",
|
||||
"triage",
|
||||
"pull"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"keys_url",
|
||||
"events_url",
|
||||
"issues_url",
|
||||
"notifications_url"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user