Skip to content

Commit

Permalink
Single file specifications refresh (54ce45f)
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Bot committed Jan 7, 2025
1 parent 54ce45f commit 46d2c4a
Show file tree
Hide file tree
Showing 3 changed files with 143 additions and 0 deletions.
55 changes: 55 additions & 0 deletions generated/artifacts/openapi-reference/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,61 @@
"tags": ["Core Resources | Workflow Runs"]
}
},
"/workflow_runs/{workflow_run_id}/evidence_folder": {
"get": {
"description": "Retrieves the evidence folder for the designated Workflow Run\n",
"operationId": "download_evidence_folder",
"parameters": [
{
"description": "Workflow Run ID",
"in": "path",
"name": "workflow_run_id",
"required": true,
"schema": {
"format": "uuid",
"type": "string"
}
}
],
"responses": {
"302": {
"description": "Found",
"headers": {
"Location": {
"description": "Link to the evidence folder.",
"schema": {
"format": "uri",
"type": "string"
}
}
}
},
"200": {
"content": {
"application/zip": {
"schema": {
"format": "binary",
"type": "string"
}
}
},
"description": "The evidence folder binary data."
},
"default": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
},
"description": "Unexpected error"
}
},
"summary": "Retrieve Workflow Run Evidence Folder",
"tags": ["Core Resources | Workflow Runs"]
}
},
"/documents": {
"get": {
"description": "All documents belonging to an applicant can be listed from this endpoint",
Expand Down
36 changes: 36 additions & 0 deletions generated/artifacts/openapi-yaml/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,42 @@ paths:
$ref: '#/components/schemas/Error'
description: Unexpected error
summary: Retrieve Workflow Run Evidence Summary File
/workflow_runs/{workflow_run_id}/evidence_folder:
get:
description: |
Retrieves the evidence folder for the designated Workflow Run
operationId: download_evidence_folder
parameters:
- description: Workflow Run ID
in: path
name: workflow_run_id
required: true
schema:
format: uuid
type: string
responses:
"302":
description: Found
headers:
Location:
description: Link to the evidence folder.
schema:
format: uri
type: string
"200":
content:
application/zip:
schema:
format: binary
type: string
description: The evidence folder binary data.
default:
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
description: Unexpected error
summary: Retrieve Workflow Run Evidence Folder
/documents:
get:
description: All documents belonging to an applicant can be listed from this
Expand Down
52 changes: 52 additions & 0 deletions generated/artifacts/openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,58 @@
"summary" : "Retrieve Workflow Run Evidence Summary File"
}
},
"/workflow_runs/{workflow_run_id}/evidence_folder" : {
"get" : {
"description" : "Retrieves the evidence folder for the designated Workflow Run\n",
"operationId" : "download_evidence_folder",
"parameters" : [ {
"description" : "Workflow Run ID",
"in" : "path",
"name" : "workflow_run_id",
"required" : true,
"schema" : {
"format" : "uuid",
"type" : "string"
}
} ],
"responses" : {
"302" : {
"description" : "Found",
"headers" : {
"Location" : {
"description" : "Link to the evidence folder.",
"schema" : {
"format" : "uri",
"type" : "string"
}
}
}
},
"200" : {
"content" : {
"application/zip" : {
"schema" : {
"format" : "binary",
"type" : "string"
}
}
},
"description" : "The evidence folder binary data."
},
"default" : {
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/Error"
}
}
},
"description" : "Unexpected error"
}
},
"summary" : "Retrieve Workflow Run Evidence Folder"
}
},
"/documents" : {
"get" : {
"description" : "All documents belonging to an applicant can be listed from this endpoint",
Expand Down

0 comments on commit 46d2c4a

Please sign in to comment.