@octokit/openapi 18.1.0 → 18.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
- "version": "18.1.0",
4
+ "version": "18.2.0",
5
5
  "title": "GitHub's official OpenAPI spec + Octokit extension",
6
6
  "description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
7
7
  "license": {
@@ -16935,6 +16935,234 @@
16935
16935
  "x-octokit": {}
16936
16936
  }
16937
16937
  },
16938
+ "/orgs/{org}/issue-types": {
16939
+ "get": {
16940
+ "summary": "List issue types for an organization",
16941
+ "description": "Lists all issue types for an organization.",
16942
+ "tags": [
16943
+ "orgs"
16944
+ ],
16945
+ "operationId": "orgs/list-issue-types",
16946
+ "externalDocs": {
16947
+ "description": "API method documentation",
16948
+ "url": "https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization"
16949
+ },
16950
+ "parameters": [
16951
+ {
16952
+ "$ref": "#/components/parameters/org"
16953
+ }
16954
+ ],
16955
+ "responses": {
16956
+ "200": {
16957
+ "description": "Response",
16958
+ "content": {
16959
+ "application/json": {
16960
+ "schema": {
16961
+ "type": "array",
16962
+ "items": {
16963
+ "$ref": "#/components/schemas/issue-type"
16964
+ }
16965
+ },
16966
+ "examples": {
16967
+ "default": {
16968
+ "$ref": "#/components/examples/issue-type-items"
16969
+ }
16970
+ }
16971
+ }
16972
+ }
16973
+ },
16974
+ "404": {
16975
+ "$ref": "#/components/responses/not_found"
16976
+ }
16977
+ },
16978
+ "x-github": {
16979
+ "githubCloudOnly": false,
16980
+ "enabledForGitHubApps": true,
16981
+ "category": "orgs",
16982
+ "subcategory": "issue-types"
16983
+ },
16984
+ "x-octokit": {}
16985
+ },
16986
+ "post": {
16987
+ "summary": "Create issue type for an organization",
16988
+ "description": "Create a new issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).",
16989
+ "tags": [
16990
+ "orgs"
16991
+ ],
16992
+ "operationId": "orgs/create-issue-type",
16993
+ "externalDocs": {
16994
+ "description": "API method documentation",
16995
+ "url": "https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization"
16996
+ },
16997
+ "parameters": [
16998
+ {
16999
+ "$ref": "#/components/parameters/org"
17000
+ }
17001
+ ],
17002
+ "requestBody": {
17003
+ "required": true,
17004
+ "content": {
17005
+ "application/json": {
17006
+ "schema": {
17007
+ "$ref": "#/components/schemas/organization-create-issue-type"
17008
+ },
17009
+ "examples": {
17010
+ "default": {
17011
+ "value": {
17012
+ "name": "Epic",
17013
+ "description": "An issue type for a multi-week tracking of work",
17014
+ "is_enabled": true,
17015
+ "color": "green",
17016
+ "is_private": true
17017
+ }
17018
+ }
17019
+ }
17020
+ }
17021
+ }
17022
+ },
17023
+ "responses": {
17024
+ "200": {
17025
+ "description": "Response",
17026
+ "content": {
17027
+ "application/json": {
17028
+ "schema": {
17029
+ "$ref": "#/components/schemas/issue-type"
17030
+ },
17031
+ "examples": {
17032
+ "default": {
17033
+ "$ref": "#/components/examples/issue-type"
17034
+ }
17035
+ }
17036
+ }
17037
+ }
17038
+ },
17039
+ "404": {
17040
+ "$ref": "#/components/responses/not_found"
17041
+ },
17042
+ "422": {
17043
+ "$ref": "#/components/responses/validation_failed_simple"
17044
+ }
17045
+ },
17046
+ "x-github": {
17047
+ "githubCloudOnly": false,
17048
+ "enabledForGitHubApps": true,
17049
+ "category": "orgs",
17050
+ "subcategory": "issue-types"
17051
+ },
17052
+ "x-octokit": {}
17053
+ }
17054
+ },
17055
+ "/orgs/{org}/issue-types/{issue_type_id}": {
17056
+ "put": {
17057
+ "summary": "Update issue type for an organization",
17058
+ "description": "Updates an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).",
17059
+ "tags": [
17060
+ "orgs"
17061
+ ],
17062
+ "operationId": "orgs/update-issue-type",
17063
+ "externalDocs": {
17064
+ "description": "API method documentation",
17065
+ "url": "https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization"
17066
+ },
17067
+ "parameters": [
17068
+ {
17069
+ "$ref": "#/components/parameters/org"
17070
+ },
17071
+ {
17072
+ "$ref": "#/components/parameters/issue-type-id"
17073
+ }
17074
+ ],
17075
+ "requestBody": {
17076
+ "required": true,
17077
+ "content": {
17078
+ "application/json": {
17079
+ "schema": {
17080
+ "$ref": "#/components/schemas/organization-update-issue-type"
17081
+ },
17082
+ "examples": {
17083
+ "default": {
17084
+ "value": {
17085
+ "name": "Epic",
17086
+ "description": "An issue type for a multi-week tracking of work",
17087
+ "is_enabled": true,
17088
+ "color": "green",
17089
+ "is_private": true
17090
+ }
17091
+ }
17092
+ }
17093
+ }
17094
+ }
17095
+ },
17096
+ "responses": {
17097
+ "200": {
17098
+ "description": "Response",
17099
+ "content": {
17100
+ "application/json": {
17101
+ "schema": {
17102
+ "$ref": "#/components/schemas/issue-type"
17103
+ },
17104
+ "examples": {
17105
+ "default": {
17106
+ "$ref": "#/components/examples/issue-type"
17107
+ }
17108
+ }
17109
+ }
17110
+ }
17111
+ },
17112
+ "404": {
17113
+ "$ref": "#/components/responses/not_found"
17114
+ },
17115
+ "422": {
17116
+ "$ref": "#/components/responses/validation_failed_simple"
17117
+ }
17118
+ },
17119
+ "x-github": {
17120
+ "githubCloudOnly": false,
17121
+ "enabledForGitHubApps": true,
17122
+ "category": "orgs",
17123
+ "subcategory": "issue-types"
17124
+ },
17125
+ "x-octokit": {}
17126
+ },
17127
+ "delete": {
17128
+ "summary": "Delete issue type for an organization",
17129
+ "description": "Deletes an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).",
17130
+ "tags": [
17131
+ "orgs"
17132
+ ],
17133
+ "operationId": "orgs/delete-issue-type",
17134
+ "externalDocs": {
17135
+ "description": "API method documentation",
17136
+ "url": "https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization"
17137
+ },
17138
+ "parameters": [
17139
+ {
17140
+ "$ref": "#/components/parameters/org"
17141
+ },
17142
+ {
17143
+ "$ref": "#/components/parameters/issue-type-id"
17144
+ }
17145
+ ],
17146
+ "responses": {
17147
+ "204": {
17148
+ "description": "Response"
17149
+ },
17150
+ "404": {
17151
+ "$ref": "#/components/responses/not_found"
17152
+ },
17153
+ "422": {
17154
+ "$ref": "#/components/responses/validation_failed_simple"
17155
+ }
17156
+ },
17157
+ "x-github": {
17158
+ "githubCloudOnly": false,
17159
+ "enabledForGitHubApps": true,
17160
+ "category": "orgs",
17161
+ "subcategory": "issue-types"
17162
+ },
17163
+ "x-octokit": {}
17164
+ }
17165
+ },
16938
17166
  "/orgs/{org}/issues": {
16939
17167
  "get": {
16940
17168
  "summary": "List organization issues assigned to the authenticated user",
@@ -16987,6 +17215,15 @@
16987
17215
  {
16988
17216
  "$ref": "#/components/parameters/labels"
16989
17217
  },
17218
+ {
17219
+ "name": "type",
17220
+ "description": "Can be the name of an issue type.",
17221
+ "in": "query",
17222
+ "required": false,
17223
+ "schema": {
17224
+ "type": "string"
17225
+ }
17226
+ },
16990
17227
  {
16991
17228
  "name": "sort",
16992
17229
  "description": "What to sort results by.",
@@ -19303,6 +19540,9 @@
19303
19540
  },
19304
19541
  {
19305
19542
  "$ref": "#/components/parameters/personal-access-token-after"
19543
+ },
19544
+ {
19545
+ "$ref": "#/components/parameters/personal-access-token-token-id"
19306
19546
  }
19307
19547
  ],
19308
19548
  "responses": {
@@ -19650,6 +19890,9 @@
19650
19890
  },
19651
19891
  {
19652
19892
  "$ref": "#/components/parameters/personal-access-token-after"
19893
+ },
19894
+ {
19895
+ "$ref": "#/components/parameters/personal-access-token-token-id"
19653
19896
  }
19654
19897
  ],
19655
19898
  "responses": {
@@ -20612,7 +20855,7 @@
20612
20855
  },
20613
20856
  "patch": {
20614
20857
  "summary": "Create or update custom properties for an organization",
20615
- "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.",
20858
+ "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.",
20616
20859
  "tags": [
20617
20860
  "orgs"
20618
20861
  ],
@@ -39128,7 +39371,7 @@
39128
39371
  },
39129
39372
  "put": {
39130
39373
  "summary": "Create or update a repository secret",
39131
- "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.",
39374
+ "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.",
39132
39375
  "tags": [
39133
39376
  "codespaces"
39134
39377
  ],
@@ -39207,7 +39450,7 @@
39207
39450
  },
39208
39451
  "delete": {
39209
39452
  "summary": "Delete a repository secret",
39210
- "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.",
39453
+ "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.",
39211
39454
  "tags": [
39212
39455
  "codespaces"
39213
39456
  ],
@@ -43600,7 +43843,7 @@
43600
43843
  },
43601
43844
  "post": {
43602
43845
  "summary": "Create a custom deployment protection rule on an environment",
43603
- "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.",
43846
+ "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.",
43604
43847
  "tags": [
43605
43848
  "repos"
43606
43849
  ],
@@ -47621,6 +47864,15 @@
47621
47864
  "type": "string"
47622
47865
  }
47623
47866
  },
47867
+ {
47868
+ "name": "type",
47869
+ "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.",
47870
+ "in": "query",
47871
+ "required": false,
47872
+ "schema": {
47873
+ "type": "string"
47874
+ }
47875
+ },
47624
47876
  {
47625
47877
  "name": "creator",
47626
47878
  "description": "The user that created the issue.",
@@ -47806,6 +48058,12 @@
47806
48058
  "items": {
47807
48059
  "type": "string"
47808
48060
  }
48061
+ },
48062
+ "type": {
48063
+ "type": "string",
48064
+ "description": "The name of the issue type to associate with this issue.",
48065
+ "nullable": true,
48066
+ "example": "Epic"
47809
48067
  }
47810
48068
  },
47811
48069
  "required": [
@@ -48661,6 +48919,12 @@
48661
48919
  "items": {
48662
48920
  "type": "string"
48663
48921
  }
48922
+ },
48923
+ "type": {
48924
+ "type": "string",
48925
+ "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.",
48926
+ "nullable": true,
48927
+ "example": "Epic"
48664
48928
  }
48665
48929
  }
48666
48930
  },
@@ -60940,7 +61204,7 @@
60940
61204
  "/search/issues": {
60941
61205
  "get": {
60942
61206
  "summary": "Search issues and pull requests",
60943
- "description": "> [!WARNING]\n> **Notice:** Search for issues and pull requests will be overridden by advanced search on September 4, 2025.",
61207
+ "description": "> [!WARNING]\n> **Notice:** Search for issues and pull requests will be overridden by advanced search on September 4, 2025.\n> You can read more about this change on [the GitHub blog](https://github.blog/changelog/2025-03-06-github-issues-projects-api-support-for-issues-advanced-search-and-more/).",
60944
61208
  "tags": [
60945
61209
  "search"
60946
61210
  ],
@@ -96821,6 +97085,7 @@
96821
97085
  "id": {
96822
97086
  "description": "Unique identifier of the webhook delivery.",
96823
97087
  "type": "integer",
97088
+ "format": "int64",
96824
97089
  "example": 42
96825
97090
  },
96826
97091
  "guid": {
@@ -96868,12 +97133,14 @@
96868
97133
  "installation_id": {
96869
97134
  "description": "The id of the GitHub App installation associated with this event.",
96870
97135
  "type": "integer",
97136
+ "format": "int64",
96871
97137
  "example": 123,
96872
97138
  "nullable": true
96873
97139
  },
96874
97140
  "repository_id": {
96875
97141
  "description": "The id of the repository associated with this event.",
96876
97142
  "type": "integer",
97143
+ "format": "int64",
96877
97144
  "example": 123,
96878
97145
  "nullable": true
96879
97146
  },
@@ -97215,7 +97482,7 @@
97215
97482
  },
97216
97483
  "dependabot_secrets": {
97217
97484
  "type": "string",
97218
- "description": "The leve of permission to grant the access token to manage Dependabot secrets.",
97485
+ "description": "The level of permission to grant the access token to manage Dependabot secrets.",
97219
97486
  "enum": [
97220
97487
  "read",
97221
97488
  "write"
@@ -100546,6 +100813,66 @@
100546
100813
  ],
100547
100814
  "nullable": true
100548
100815
  },
100816
+ "issue-type": {
100817
+ "title": "Issue Type",
100818
+ "description": "The type of issue.",
100819
+ "type": "object",
100820
+ "nullable": true,
100821
+ "properties": {
100822
+ "id": {
100823
+ "type": "integer",
100824
+ "description": "The unique identifier of the issue type."
100825
+ },
100826
+ "node_id": {
100827
+ "type": "string",
100828
+ "description": "The node identifier of the issue type."
100829
+ },
100830
+ "name": {
100831
+ "type": "string",
100832
+ "description": "The name of the issue type."
100833
+ },
100834
+ "description": {
100835
+ "type": "string",
100836
+ "description": "The description of the issue type.",
100837
+ "nullable": true
100838
+ },
100839
+ "color": {
100840
+ "type": "string",
100841
+ "description": "The color of the issue type.",
100842
+ "enum": [
100843
+ "gray",
100844
+ "blue",
100845
+ "green",
100846
+ "yellow",
100847
+ "orange",
100848
+ "red",
100849
+ "pink",
100850
+ "purple"
100851
+ ],
100852
+ "nullable": true
100853
+ },
100854
+ "created_at": {
100855
+ "type": "string",
100856
+ "description": "The time the issue type created.",
100857
+ "format": "date-time"
100858
+ },
100859
+ "updated_at": {
100860
+ "type": "string",
100861
+ "description": "The time the issue type last updated.",
100862
+ "format": "date-time"
100863
+ },
100864
+ "is_enabled": {
100865
+ "type": "boolean",
100866
+ "description": "The enabled state of the issue type."
100867
+ }
100868
+ },
100869
+ "required": [
100870
+ "id",
100871
+ "node_id",
100872
+ "name",
100873
+ "description"
100874
+ ]
100875
+ },
100549
100876
  "nullable-integration": {
100550
100877
  "title": "GitHub app",
100551
100878
  "description": "GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.",
@@ -100972,6 +101299,9 @@
100972
101299
  "type": "string",
100973
101300
  "format": "uri"
100974
101301
  },
101302
+ "type": {
101303
+ "$ref": "#/components/schemas/issue-type"
101304
+ },
100975
101305
  "repository": {
100976
101306
  "$ref": "#/components/schemas/repository"
100977
101307
  },
@@ -104206,12 +104536,12 @@
104206
104536
  "type": "object",
104207
104537
  "properties": {
104208
104538
  "id": {
104209
- "description": "The id of the runner.",
104539
+ "description": "The ID of the runner.",
104210
104540
  "type": "integer",
104211
104541
  "example": 5
104212
104542
  },
104213
104543
  "runner_group_id": {
104214
- "description": "The id of the runner group.",
104544
+ "description": "The ID of the runner group.",
104215
104545
  "type": "integer",
104216
104546
  "example": 1
104217
104547
  },
@@ -106971,6 +107301,88 @@
106971
107301
  "limit"
106972
107302
  ]
106973
107303
  },
107304
+ "organization-create-issue-type": {
107305
+ "type": "object",
107306
+ "properties": {
107307
+ "name": {
107308
+ "description": "Name of the issue type.",
107309
+ "type": "string"
107310
+ },
107311
+ "is_enabled": {
107312
+ "description": "Whether or not the issue type is enabled at the organization level.",
107313
+ "type": "boolean"
107314
+ },
107315
+ "is_private": {
107316
+ "description": "Whether or not the issue type is restricted to issues in private repositories.",
107317
+ "type": "boolean"
107318
+ },
107319
+ "description": {
107320
+ "description": "Description of the issue type.",
107321
+ "type": "string",
107322
+ "nullable": true
107323
+ },
107324
+ "color": {
107325
+ "description": "Color for the issue type.",
107326
+ "type": "string",
107327
+ "enum": [
107328
+ "gray",
107329
+ "blue",
107330
+ "green",
107331
+ "yellow",
107332
+ "orange",
107333
+ "red",
107334
+ "pink",
107335
+ "purple"
107336
+ ],
107337
+ "nullable": true
107338
+ }
107339
+ },
107340
+ "required": [
107341
+ "name",
107342
+ "is_enabled"
107343
+ ]
107344
+ },
107345
+ "organization-update-issue-type": {
107346
+ "type": "object",
107347
+ "properties": {
107348
+ "name": {
107349
+ "description": "Name of the issue type.",
107350
+ "type": "string"
107351
+ },
107352
+ "is_enabled": {
107353
+ "description": "Whether or not the issue type is enabled at the organization level.",
107354
+ "type": "boolean"
107355
+ },
107356
+ "is_private": {
107357
+ "description": "Whether or not the issue type is restricted to issues in private repositories.",
107358
+ "type": "boolean"
107359
+ },
107360
+ "description": {
107361
+ "description": "Description of the issue type.",
107362
+ "type": "string",
107363
+ "nullable": true
107364
+ },
107365
+ "color": {
107366
+ "description": "Color for the issue type.",
107367
+ "type": "string",
107368
+ "enum": [
107369
+ "gray",
107370
+ "blue",
107371
+ "green",
107372
+ "yellow",
107373
+ "orange",
107374
+ "red",
107375
+ "pink",
107376
+ "purple"
107377
+ ],
107378
+ "nullable": true
107379
+ }
107380
+ },
107381
+ "required": [
107382
+ "name",
107383
+ "is_enabled"
107384
+ ]
107385
+ },
106974
107386
  "org-membership": {
106975
107387
  "title": "Org Membership",
106976
107388
  "description": "Org Membership",
@@ -108157,6 +108569,16 @@
108157
108569
  "maxItems": 200,
108158
108570
  "nullable": true,
108159
108571
  "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values."
108572
+ },
108573
+ "values_editable_by": {
108574
+ "type": "string",
108575
+ "nullable": true,
108576
+ "enum": [
108577
+ "org_actors",
108578
+ "org_and_repo_actors"
108579
+ ],
108580
+ "example": "org_actors",
108581
+ "description": "Who can edit the values of the property"
108160
108582
  }
108161
108583
  },
108162
108584
  "required": [
@@ -121479,6 +121901,9 @@
121479
121901
  "type": "string",
121480
121902
  "format": "uri"
121481
121903
  },
121904
+ "type": {
121905
+ "$ref": "#/components/schemas/issue-type"
121906
+ },
121482
121907
  "repository": {
121483
121908
  "$ref": "#/components/schemas/repository"
121484
121909
  },
@@ -127360,6 +127785,9 @@
127360
127785
  "type": "string",
127361
127786
  "format": "uri"
127362
127787
  },
127788
+ "type": {
127789
+ "$ref": "#/components/schemas/issue-type"
127790
+ },
127363
127791
  "performed_via_github_app": {
127364
127792
  "$ref": "#/components/schemas/nullable-integration"
127365
127793
  },
@@ -133378,6 +133806,9 @@
133378
133806
  "description": "Title of the issue",
133379
133807
  "type": "string"
133380
133808
  },
133809
+ "type": {
133810
+ "$ref": "#/components/schemas/issue-type"
133811
+ },
133381
133812
  "updated_at": {
133382
133813
  "type": "string",
133383
133814
  "format": "date-time"
@@ -134769,6 +135200,9 @@
134769
135200
  "description": "Title of the issue",
134770
135201
  "type": "string"
134771
135202
  },
135203
+ "type": {
135204
+ "$ref": "#/components/schemas/issue-type"
135205
+ },
134772
135206
  "updated_at": {
134773
135207
  "type": "string",
134774
135208
  "format": "date-time"
@@ -158832,6 +159266,9 @@
158832
159266
  "description": "Title of the issue",
158833
159267
  "type": "string"
158834
159268
  },
159269
+ "type": {
159270
+ "$ref": "#/components/schemas/issue-type"
159271
+ },
158835
159272
  "updated_at": {
158836
159273
  "type": "string",
158837
159274
  "format": "date-time"
@@ -160414,6 +160851,9 @@
160414
160851
  "description": "Title of the issue",
160415
160852
  "type": "string"
160416
160853
  },
160854
+ "type": {
160855
+ "$ref": "#/components/schemas/issue-type"
160856
+ },
160417
160857
  "updated_at": {
160418
160858
  "type": "string",
160419
160859
  "format": "date-time"
@@ -162005,6 +162445,9 @@
162005
162445
  "description": "Title of the issue",
162006
162446
  "type": "string"
162007
162447
  },
162448
+ "type": {
162449
+ "$ref": "#/components/schemas/issue-type"
162450
+ },
162008
162451
  "updated_at": {
162009
162452
  "type": "string",
162010
162453
  "format": "date-time"
@@ -163630,6 +164073,9 @@
163630
164073
  "description": "Title of the issue",
163631
164074
  "type": "string"
163632
164075
  },
164076
+ "type": {
164077
+ "$ref": "#/components/schemas/issue-type"
164078
+ },
163633
164079
  "updated_at": {
163634
164080
  "type": "string",
163635
164081
  "format": "date-time"
@@ -165071,6 +165517,9 @@
165071
165517
  "description": "Title of the issue",
165072
165518
  "type": "string"
165073
165519
  },
165520
+ "type": {
165521
+ "$ref": "#/components/schemas/issue-type"
165522
+ },
165074
165523
  "updated_at": {
165075
165524
  "type": "string",
165076
165525
  "format": "date-time"
@@ -166333,6 +166782,9 @@
166333
166782
  "description": "Title of the issue",
166334
166783
  "type": "string"
166335
166784
  },
166785
+ "type": {
166786
+ "$ref": "#/components/schemas/issue-type"
166787
+ },
166336
166788
  "updated_at": {
166337
166789
  "type": "string",
166338
166790
  "format": "date-time"
@@ -167584,6 +168036,9 @@
167584
168036
  "type": "string",
167585
168037
  "format": "uri"
167586
168038
  },
168039
+ "type": {
168040
+ "$ref": "#/components/schemas/issue-type"
168041
+ },
167587
168042
  "title": {
167588
168043
  "description": "Title of the issue",
167589
168044
  "type": "string"
@@ -168832,6 +169287,9 @@
168832
169287
  "type": "string",
168833
169288
  "format": "uri"
168834
169289
  },
169290
+ "type": {
169291
+ "$ref": "#/components/schemas/issue-type"
169292
+ },
168835
169293
  "title": {
168836
169294
  "description": "Title of the issue",
168837
169295
  "type": "string"
@@ -170106,6 +170564,9 @@
170106
170564
  "type": "string",
170107
170565
  "format": "uri"
170108
170566
  },
170567
+ "type": {
170568
+ "$ref": "#/components/schemas/issue-type"
170569
+ },
170109
170570
  "title": {
170110
170571
  "description": "Title of the issue",
170111
170572
  "type": "string"
@@ -171348,6 +171809,9 @@
171348
171809
  "description": "Title of the issue",
171349
171810
  "type": "string"
171350
171811
  },
171812
+ "type": {
171813
+ "$ref": "#/components/schemas/issue-type"
171814
+ },
171351
171815
  "updated_at": {
171352
171816
  "type": "string",
171353
171817
  "format": "date-time"
@@ -174396,6 +174860,9 @@
174396
174860
  "description": "Title of the issue",
174397
174861
  "type": "string"
174398
174862
  },
174863
+ "type": {
174864
+ "$ref": "#/components/schemas/issue-type"
174865
+ },
174399
174866
  "updated_at": {
174400
174867
  "type": "string",
174401
174868
  "format": "date-time"
@@ -175802,6 +176269,9 @@
175802
176269
  "type": "string"
175803
176270
  }
175804
176271
  }
176272
+ },
176273
+ "type": {
176274
+ "$ref": "#/components/schemas/issue-type"
175805
176275
  }
175806
176276
  }
175807
176277
  },
@@ -176912,6 +177382,9 @@
176912
177382
  "description": "Title of the issue",
176913
177383
  "type": "string"
176914
177384
  },
177385
+ "type": {
177386
+ "$ref": "#/components/schemas/issue-type"
177387
+ },
176915
177388
  "updated_at": {
176916
177389
  "type": "string",
176917
177390
  "format": "date-time"
@@ -178882,6 +179355,9 @@
178882
179355
  "description": "Title of the issue",
178883
179356
  "type": "string"
178884
179357
  },
179358
+ "type": {
179359
+ "$ref": "#/components/schemas/issue-type"
179360
+ },
178885
179361
  "updated_at": {
178886
179362
  "type": "string",
178887
179363
  "format": "date-time"
@@ -276687,6 +277163,36 @@
276687
277163
  }
276688
277164
  ]
276689
277165
  },
277166
+ "issue-type-items": {
277167
+ "value": [
277168
+ {
277169
+ "id": 410,
277170
+ "node_id": "IT_kwDNAd3NAZo",
277171
+ "name": "Task",
277172
+ "description": "A specific piece of work",
277173
+ "created_at": "2024-12-11T14:39:09Z",
277174
+ "updated_at": "2024-12-11T14:39:09Z"
277175
+ },
277176
+ {
277177
+ "id": 411,
277178
+ "node_id": "IT_kwDNAd3NAZs",
277179
+ "name": "Bug",
277180
+ "description": "An unexpected problem or behavior",
277181
+ "created_at": "2024-12-11T14:39:09Z",
277182
+ "updated_at": "2024-12-11T14:39:09Z"
277183
+ }
277184
+ ]
277185
+ },
277186
+ "issue-type": {
277187
+ "value": {
277188
+ "id": 410,
277189
+ "node_id": "IT_kwDNAd3NAZo",
277190
+ "name": "Task",
277191
+ "description": "A specific piece of work",
277192
+ "created_at": "2024-12-11T14:39:09Z",
277193
+ "updated_at": "2024-12-11T14:39:09Z"
277194
+ }
277195
+ },
276690
277196
  "codespace": {
276691
277197
  "value": {
276692
277198
  "id": 1,
@@ -300498,6 +301004,15 @@
300498
301004
  "type": "integer"
300499
301005
  }
300500
301006
  },
301007
+ "issue-type-id": {
301008
+ "name": "issue_type_id",
301009
+ "description": "The unique identifier of the issue type.",
301010
+ "in": "path",
301011
+ "required": true,
301012
+ "schema": {
301013
+ "type": "integer"
301014
+ }
301015
+ },
300501
301016
  "codespace-name": {
300502
301017
  "name": "codespace_name",
300503
301018
  "in": "path",
@@ -300659,6 +301174,20 @@
300659
301174
  "format": "date-time"
300660
301175
  }
300661
301176
  },
301177
+ "personal-access-token-token-id": {
301178
+ "name": "token_id",
301179
+ "description": "The ID of the token",
301180
+ "in": "query",
301181
+ "required": false,
301182
+ "schema": {
301183
+ "type": "array",
301184
+ "maxItems": 50,
301185
+ "items": {
301186
+ "type": "string"
301187
+ },
301188
+ "example": "token_id[]=1,token_id[]=2"
301189
+ }
301190
+ },
300662
301191
  "fine-grained-personal-access-token-id": {
300663
301192
  "name": "pat_id",
300664
301193
  "description": "The unique identifier of the fine-grained personal access token.",