Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13907,7 +13907,6 @@
"version": {
"type": "string",
"description": "The artifact version. Note that if multiple deployments have identical 'digest' parameter values,\nthe version parameter must also be identical across all entries.\n",
"minLength": 1,
"maxLength": 100,
"x-multi-segment": true,
"examples": [
Expand All @@ -13917,6 +13916,7 @@
"status": {
"type": "string",
"description": "The deployment status of the artifact.",
"default": "deployed",
"enum": [
"deployed",
"decommissioned"
Expand All @@ -13931,7 +13931,6 @@
"github_repository": {
"type": "string",
"description": "The name of the GitHub repository associated with the artifact. This should be used\nwhen there are no provenance attestations available for the artifact. The repository\nmust belong to the organization specified in the path parameter.\n\nIf a provenance attestation is available for the artifact, the API will use\nthe repository information from the attestation instead of this parameter.",
"minLength": 1,
"maxLength": 100,
"pattern": "^[A-Za-z0-9.\\-_]+$",
"examples": [
Expand Down Expand Up @@ -17166,7 +17165,7 @@
"properties": {
"selected_usernames": {
"type": "array",
"description": "The usernames of the organization members whose codespaces be billed to the organization.",
"description": "The usernames of the organization members and outside collaborators whose codespaces should be billed to the organization.",
"items": {
"type": "string"
},
Expand Down Expand Up @@ -17243,7 +17242,7 @@
"properties": {
"selected_usernames": {
"type": "array",
"description": "The usernames of the organization members whose codespaces should not be billed to the organization.",
"description": "The usernames of the organization members and outside collaborators whose codespaces should not be billed to the organization.",
"items": {
"type": "string"
},
Expand Down
11 changes: 5 additions & 6 deletions descriptions-next/api.github.com/api.github.com.2022-11-28.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10055,14 +10055,14 @@ paths:
description: |
The artifact version. Note that if multiple deployments have identical 'digest' parameter values,
the version parameter must also be identical across all entries.
minLength: 1
maxLength: 100
x-multi-segment: true
examples:
- 1.2.3
status:
type: string
description: The deployment status of the artifact.
default: deployed
enum:
- deployed
- decommissioned
Expand All @@ -10084,7 +10084,6 @@ paths:

If a provenance attestation is available for the artifact, the API will use
the repository information from the attestation instead of this parameter.
minLength: 1
maxLength: 100
pattern: "^[A-Za-z0-9.\\-_]+$"
examples:
Expand Down Expand Up @@ -12466,8 +12465,8 @@ paths:
properties:
selected_usernames:
type: array
description: The usernames of the organization members whose codespaces
be billed to the organization.
description: The usernames of the organization members and outside
collaborators whose codespaces should be billed to the organization.
items:
type: string
maxItems: 100
Expand Down Expand Up @@ -12524,8 +12523,8 @@ paths:
properties:
selected_usernames:
type: array
description: The usernames of the organization members whose codespaces
should not be billed to the organization.
description: The usernames of the organization members and outside
collaborators whose codespaces should not be billed to the organization.
items:
type: string
maxItems: 100
Expand Down
Loading
Loading