From 9cd29e52ea3507ac80f9071a1e5d77a3b95f6fc3 Mon Sep 17 00:00:00 2001 From: "zoo-github-actions-auth[bot]" Date: Thu, 19 Feb 2026 19:31:53 +0000 Subject: [PATCH] YOYO NEW API SPEC! --- spec.json | 144 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 144 insertions(+) diff --git a/spec.json b/spec.json index 02e53225..2325a51e 100644 --- a/spec.json +++ b/spec.json @@ -9380,6 +9380,150 @@ } } }, + "/org/datasets/{id}/conversions/{conversion_id}/original": { + "get": { + "tags": [ + "orgs" + ], + "summary": "Download the original source file for a specific dataset conversion.", + "operationId": "download_org_dataset_conversion_original", + "parameters": [ + { + "in": "path", + "name": "conversion_id", + "description": "Conversion identifier.", + "required": true, + "schema": { + "$ref": "#/components/schemas/Uuid" + } + }, + { + "in": "path", + "name": "id", + "description": "Dataset identifier.", + "required": true, + "schema": { + "$ref": "#/components/schemas/Uuid" + } + } + ], + "responses": { + "default": { + "description": "", + "content": { + "*/*": { + "schema": {} + } + } + } + } + }, + "options": { + "tags": [ + "hidden" + ], + "summary": "OPTIONS endpoint.", + "description": "This is necessary for some preflight requests, specifically POST, PUT, and DELETE.", + "operationId": "options_download_org_dataset_conversion_original", + "parameters": [ + { + "in": "path", + "name": "conversion_id", + "description": "Conversion identifier.", + "required": true, + "schema": { + "$ref": "#/components/schemas/Uuid" + } + }, + { + "in": "path", + "name": "id", + "description": "Dataset identifier.", + "required": true, + "schema": { + "$ref": "#/components/schemas/Uuid" + } + } + ], + "responses": { + "204": { + "description": "successful operation, no content", + "headers": { + "Access-Control-Allow-Credentials": { + "description": "Access-Control-Allow-Credentials header.", + "style": "simple", + "schema": { + "nullable": true, + "type": "string" + } + }, + "Access-Control-Allow-Headers": { + "description": "Access-Control-Allow-Headers header. This is a comma-separated list of headers.", + "style": "simple", + "schema": { + "nullable": true, + "type": "string" + } + }, + "Access-Control-Allow-Methods": { + "description": "Access-Control-Allow-Methods header.", + "style": "simple", + "schema": { + "nullable": true, + "type": "string" + } + }, + "Access-Control-Allow-Origin": { + "description": "Access-Control-Allow-Origin header.", + "style": "simple", + "schema": { + "nullable": true, + "type": "string" + } + }, + "Content-Location": { + "description": "The Content-Location header for responses that are not the final destination. This is used to indicate where the resource can be found, when it is finished.", + "style": "simple", + "schema": { + "nullable": true, + "type": "string" + } + }, + "Location": { + "description": "The location header for redirects and letting users know if there is a websocket they can listen to for status updates on their operation.", + "style": "simple", + "schema": { + "nullable": true, + "type": "string" + } + }, + "Set-Cookie": { + "description": "Set-Cookie header.", + "style": "simple", + "schema": { + "nullable": true, + "type": "string" + } + }, + "X-Api-Call-Id": { + "description": "ID for this request. We return it so that users can report this to us and help us debug their problems.", + "style": "simple", + "required": true, + "schema": { + "type": "string" + } + } + } + }, + "4XX": { + "$ref": "#/components/responses/Error" + }, + "5XX": { + "$ref": "#/components/responses/Error" + } + } + } + }, "/org/datasets/{id}/conversions/{conversion_id}/retrigger": { "post": { "tags": [