Skip to content

Fix openapi.yaml #462

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: manual_spec
Choose a base branch
from
Open
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
38 changes: 32 additions & 6 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7451,6 +7451,13 @@ paths:
],
}
/organization/certificates/{certificate_id}:
parameters:
- name: certificate_id
in: path
description: Unique ID of the certificate to retrieve.
required: true
schema:
type: string
get:
summary: |
Get a certificate that has been uploaded to the organization.
Expand All @@ -7460,12 +7467,6 @@ paths:
tags:
- Certificates
parameters:
- name: cert_id
in: path
description: Unique ID of the certificate to retrieve.
required: true
schema:
type: string
- name: include
in: query
description: A list of additional fields to include in the response. Currently
Expand Down Expand Up @@ -8319,6 +8320,13 @@ paths:
"status": "archived"
}
/organization/projects/{project_id}/certificates:
parameters:
- name: project_id
in: path
description: The ID of the project.
required: true
schema:
type: string
get:
summary: List certificates for this project.
operationId: listProjectCertificates
Expand Down Expand Up @@ -8393,6 +8401,13 @@ paths:
"has_more": false
}
/organization/projects/{project_id}/certificates/activate:
parameters:
- name: project_id
in: path
description: The ID of the project.
required: true
schema:
type: string
post:
summary: >
Activate certificates at the project level.
Expand Down Expand Up @@ -8460,6 +8475,13 @@ paths:
],
}
/organization/projects/{project_id}/certificates/deactivate:
parameters:
- name: project_id
in: path
description: The ID of the project.
required: true
schema:
type: string
post:
summary: >
Deactivate certificates at the project level.
Expand Down Expand Up @@ -36559,6 +36581,8 @@ components:
type: array
description: |
The bytes that were used to generate the log probability.
items:
type: integer
required:
- type
- delta
Expand Down Expand Up @@ -36610,6 +36634,8 @@ components:
type: array
description: |
The bytes that were used to generate the log probability.
items:
type: integer
required:
- type
- text
Expand Down