From da860a5292b9d1e1e2f6b0e4b57bf9c8fefcb967 Mon Sep 17 00:00:00 2001 From: Daniel Sotirhos Date: Tue, 26 Mar 2024 16:50:16 -0700 Subject: [PATCH] [a] Add support for POST to manifest endpoint (#5918) --- lambdas/service/app.py | 22 +- lambdas/service/openapi.json | 2829 ++++++++++++++++++++++- test/integration_test.py | 6 +- test/service/test_manifest.py | 20 +- test/service/test_manifest_async.py | 2 +- test/service/test_request_validation.py | 2 +- 6 files changed, 2800 insertions(+), 81 deletions(-) diff --git a/lambdas/service/app.py b/lambdas/service/app.py index 1495d0abab..c205988009 100644 --- a/lambdas/service/app.py +++ b/lambdas/service/app.py @@ -228,7 +228,7 @@ # changes and reset the minor version to zero. Otherwise, increment only # the minor version for backwards compatible changes. A backwards # compatible change is one that does not require updates to clients. - 'version': '4.0' + 'version': '4.1' }, 'tags': [ { @@ -1279,8 +1279,8 @@ def manifest_route(*, fetch: bool, initiate: bool): # want to complicate the API with this detail ('/fetch' if fetch else '') + ('/manifest/files' if initiate else '/manifest/files/{token}'), - # The initial PUT request is idempotent. - methods=['PUT' if initiate else 'GET'], + # The initial request is idempotent. + methods=['POST', 'PUT'] if initiate else ['GET'], interactive=fetch, cors=True, path_spec=None if initiate else { @@ -1308,9 +1308,9 @@ def manifest_route(*, fetch: bool, initiate: bool): - a 302 redirect to the URL of an already prepared manifest. This endpoint is not suitable for interactive use via the - Swagger UI. Please use [PUT /fetch/manifest/files][1] instead. + Swagger UI. Please use [POST /fetch/manifest/files][1] instead. - [1]: #operations-Manifests-put_fetch_manifest_files + [1]: #operations-Manifests-post_fetch_manifest_files ''') + parameter_hoisting_note if initiate and not fetch else fd(''' Check on the status of an ongoing manifest preparation job, returning either @@ -1328,12 +1328,12 @@ def manifest_route(*, fetch: bool, initiate: bool): ''') if not initiate and not fetch else fd(''' Create a manifest preparation job, returning a 200 status response whose JSON body emulates the HTTP headers that would be - found in a response to an equivalent request to the [PUT + found in a response to an equivalent request to the [POST /manifest/files][1] endpoint. Whenever client-side JavaScript code is used in a web application to request the preparation of a manifest from Azul, - this endpoint should be used instead of [PUT + this endpoint should be used instead of [POST /manifest/files][1]. This way, the client can use XHR to make the request, retaining full control over the handling of redirects and enabling the client to bypass certain limitations @@ -1343,7 +1343,7 @@ def manifest_route(*, fetch: bool, initiate: bool): upper limit on the number of consecutive redirects, before the manifest generation job is done. - [1]: #operations-Manifests-put_manifest_files + [1]: #operations-Manifests-post_manifest_files ''') + parameter_hoisting_note if initiate and fetch else fd(''' Check on the status of an ongoing manifest preparation job, returning a 200 status response whose JSON body emulates the @@ -1465,7 +1465,7 @@ def manifest_route(*, fetch: bool, initiate: bool): '410': { 'description': fd(''' The manifest preparation job has expired. Request a - new preparation using the `PUT /manifest/files` + new preparation using the `POST /manifest/files` endpoint. ''') } @@ -1481,9 +1481,9 @@ def manifest_route(*, fetch: bool, initiate: bool): For a detailed description of these properties see the documentation for the respective response headers documented under ''') + (fd(''' - [PUT /manifest/files][1]. + [POST /manifest/files][1]. - [1]: #operations-Manifests-put_manifest_files + [1]: #operations-Manifests-post_manifest_files ''') if initiate else fd(''' [GET /manifest/files/{token}][1]. diff --git a/lambdas/service/openapi.json b/lambdas/service/openapi.json index 80221b3e94..b0263f56a4 100644 --- a/lambdas/service/openapi.json +++ b/lambdas/service/openapi.json @@ -8168,12 +8168,12 @@ } }, "/manifest/files": { - "put": { + "post": { "tags": [ "Manifests" ], "summary": "Initiate the preparation of a manifest", - "description": "\nCreate a manifest preparation job, returning either\n\n- a 301 redirect to the URL of the status of that job or\n\n- a 302 redirect to the URL of an already prepared manifest.\n\nThis endpoint is not suitable for interactive use via the\nSwagger UI. Please use [PUT /fetch/manifest/files][1] instead.\n\n[1]: #operations-Manifests-put_fetch_manifest_files\n\nAny of the query parameters documented below can alternatively be passed as\na property of a JSON object in the body of the request. This can be useful\nin case the value of the `filters` query parameter causes the URL to exceed\nthe maximum length of 8192 characters, resulting in a 413 Request Entity Too\nLarge response.\n\nThe request `GET /index/foo?filters={\u2026}`, for example, is equivalent to a\n`POST /index/foo` request with the body `{\"filters\": {\u2026}}`.\n", + "description": "\nCreate a manifest preparation job, returning either\n\n- a 301 redirect to the URL of the status of that job or\n\n- a 302 redirect to the URL of an already prepared manifest.\n\nThis endpoint is not suitable for interactive use via the\nSwagger UI. Please use [POST /fetch/manifest/files][1] instead.\n\n[1]: #operations-Manifests-post_fetch_manifest_files\n\nAny of the query parameters documented below can alternatively be passed as\na property of a JSON object in the body of the request. This can be useful\nin case the value of the `filters` query parameter causes the URL to exceed\nthe maximum length of 8192 characters, resulting in a 413 Request Entity Too\nLarge response.\n\nThe request `GET /index/foo?filters={\u2026}`, for example, is equivalent to a\n`POST /index/foo` request with the body `{\"filters\": {\u2026}}`.\n", "parameters": [ { "name": "catalog", @@ -9516,71 +9516,2784 @@ } } } - } - }, - "/manifest/files/{token}": { - "parameters": [ - { - "name": "token", - "in": "path", - "required": true, - "schema": { - "type": "string" - }, - "description": "\nAn opaque string representing the manifest preparation job\n" - } - ], - "get": { + }, + "put": { "tags": [ "Manifests" ], - "summary": "Determine status of a manifest preparation job", - "description": "\nCheck on the status of an ongoing manifest preparation job,\nreturning either\n\n- a 301 redirect to this endpoint if the manifest job is still\n running\n\n- a 302 redirect to the URL of the completed manifest.\n\nThis endpoint is not suitable for interactive use via the\nSwagger UI. Please use [GET /fetch/manifest/files/{token}][1]\ninstead.\n\n[1]: #operations-Manifests-get_fetch_manifest_files\n", - "parameters": [], - "responses": { - "301": { - "description": "\nA redirect indicating that the manifest preparation job\nis running. Wait for\nthe recommended number of seconds (see `Retry-After`\nheader) and then follow the redirect to check the status\nof the job again.\n", - "headers": { - "Location": { - "description": "\nThe URL of this endpoint\n", - "schema": { - "type": "string", - "format": "url" - } - }, - "Retry-After": { - "description": "\nThe recommended number of seconds to wait before\nrequesting the URL specified in the `Location`\nheader\n", - "schema": { - "type": "string" - } - } - } + "summary": "Initiate the preparation of a manifest", + "description": "\nCreate a manifest preparation job, returning either\n\n- a 301 redirect to the URL of the status of that job or\n\n- a 302 redirect to the URL of an already prepared manifest.\n\nThis endpoint is not suitable for interactive use via the\nSwagger UI. Please use [POST /fetch/manifest/files][1] instead.\n\n[1]: #operations-Manifests-post_fetch_manifest_files\n\nAny of the query parameters documented below can alternatively be passed as\na property of a JSON object in the body of the request. This can be useful\nin case the value of the `filters` query parameter causes the URL to exceed\nthe maximum length of 8192 characters, resulting in a 413 Request Entity Too\nLarge response.\n\nThe request `GET /index/foo?filters={\u2026}`, for example, is equivalent to a\n`POST /index/foo` request with the body `{\"filters\": {\u2026}}`.\n", + "parameters": [ + { + "name": "catalog", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "dcp2" + ], + "default": "dcp2" + }, + "description": "The name of the catalog to query." }, - "302": { - "description": "\nA redirect indicating that the manifest preparation job\nis now done. Immediately\nfollow the redirect to obtain the manifest contents.\n\nThe response body contains, for a number of commonly\nused shells, a command line suitable for downloading the\nmanifest.\n", - "headers": { - "Location": { - "description": "The URL of the manifest.\n Clients should not make any assumptions about\n any parts of the returned domain, except that\n the scheme will be `https`.\n", + { + "name": "filters", + "in": "query", + "required": false, + "content": { + "application/json": { "schema": { - "type": "string", - "format": "url" - } - } - } - }, - "410": { - "description": "\nThe manifest preparation job has expired. Request a\nnew preparation using the `PUT /manifest/files`\nendpoint.\n" - } - } - } - }, - "/fetch/manifest/files": { + "type": "object", + "properties": { + "accessions": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "object", + "properties": { + "namespace": { + "type": "string", + "nullable": true + }, + "accession": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "aggregateLastModifiedDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "aggregateSubmissionDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "aggregateUpdateDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "assayType": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "object" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "biologicalSex": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "bionetworkName": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "bundleUuid": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "bundleVersion": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "cellCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "cellLineType": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "contactName": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "contentDescription": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "developmentStage": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "donorCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "donorDisease": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "effectiveCellCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "effectiveOrgan": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "entryId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileFormat": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileName": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileSize": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "fileSource": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileVersion": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "genusSpecies": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "institution": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "instrumentManufacturerModel": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "isIntermediate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "boolean", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "isTissueAtlasProject": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "boolean", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "laboratory": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "lastModifiedDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "libraryConstructionApproach": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "matrixCellCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "modelOrgan": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "modelOrganPart": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "nucleicAcidSource": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "organ": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "organPart": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "organismAge": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "object", + "properties": { + "value": { + "type": "string" + }, + "unit": { + "type": "string" + } + }, + "required": [ + "value", + "unit" + ], + "additionalProperties": false + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "organismAgeRange": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "contains": { + "type": "array", + "items": { + "anyOf": [ + { + "type": "number", + "format": "double" + }, + { + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "minItems": 2, + "maxItems": 2 + } + ] + } + } + }, + "required": [ + "contains" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "intersects": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "intersects" + ], + "additionalProperties": false + } + ] + }, + "pairedEnd": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "boolean", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "preservationMethod": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "project": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "projectDescription": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "projectEstimatedCellCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "projectId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "projectTitle": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "publicationTitle": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sampleDisease": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sampleEntityType": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sampleId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "selectedCellType": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sourceId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sourceSpec": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "specimenDisease": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "specimenOrgan": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "specimenOrganPart": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "submissionDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "tissueAtlas": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "object", + "properties": { + "atlas": { + "type": "string", + "nullable": true + }, + "version": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "updateDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "workflow": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + } + }, + "default": "{}", + "example": { + "cellCount": { + "within": [ + [ + 10000, + 1000000000 + ] + ] + } + } + } + } + }, + "description": "\nCriteria to filter entities from the search results.\n\nEach filter consists of a field name, a relation (relational operator),\nand an array of field values. The available relations are \"is\",\n\"within\", \"contains\", and \"intersects\". Multiple filters are combined\nusing \"and\" logic. An entity must match all filters to be included in\nthe response. How multiple field values within a single filter are\ncombined depends on the relation.\n\nFor the \"is\" relation, multiple values are combined using \"or\" logic.\nFor example, `{\"fileFormat\": {\"is\": [\"fastq\", \"fastq.gz\"]}}` selects\nentities where the file format is either \"fastq\" or \"fastq.gz\". For the\n\"within\", \"intersects\", and \"contains\" relations, the field values must\ncome in nested pairs specifying upper and lower bounds, and multiple\npairs are combined using \"and\" logic. For example, `{\"donorCount\":\n{\"within\": [[1,5], [5,10]]}}` selects entities whose donor organism\ncount falls within both ranges, i.e., is exactly 5.\n\nThe accessions field supports filtering for a specific accession and/or\nnamespace within a project. For example, `{\"accessions\": {\"is\": [\n{\"namespace\":\"array_express\"}]}}` will filter for projects that have an\n`array_express` accession. Similarly, `{\"accessions\": {\"is\": [\n{\"accession\":\"ERP112843\"}]}}` will filter for projects that have the\naccession `ERP112843` while `{\"accessions\": {\"is\": [\n{\"namespace\":\"array_express\", \"accession\": \"E-AAAA-00\"}]}}` will filter\nfor projects that match both values.\n\nThe organismAge field is special in that it contains two property keys:\nvalue and unit. For example, `{\"organismAge\": {\"is\": [{\"value\": \"20\",\n\"unit\": \"year\"}]}}`. Both keys are required. `{\"organismAge\": {\"is\":\n[null]}}` selects entities that have no organism age.\n\nSupported field names are: accessions, aggregateLastModifiedDate, aggregateSubmissionDate, aggregateUpdateDate, assayType, biologicalSex, bionetworkName, bundleUuid, bundleVersion, cellCount, cellLineType, contactName, contentDescription, developmentStage, donorCount, donorDisease, effectiveCellCount, effectiveOrgan, entryId, fileFormat, fileId, fileName, fileSize, fileSource, fileVersion, genusSpecies, institution, instrumentManufacturerModel, isIntermediate, isTissueAtlasProject, laboratory, lastModifiedDate, libraryConstructionApproach, matrixCellCount, modelOrgan, modelOrganPart, nucleicAcidSource, organ, organPart, organismAge, organismAgeRange, pairedEnd, preservationMethod, project, projectDescription, projectEstimatedCellCount, projectId, projectTitle, publicationTitle, sampleDisease, sampleEntityType, sampleId, selectedCellType, sourceId, sourceSpec, specimenDisease, specimenOrgan, specimenOrganPart, submissionDate, tissueAtlas, updateDate, workflow\n" + }, + { + "name": "format", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "compact", + "terra.bdbag", + "terra.pfb", + "curl" + ] + }, + "description": "\nThe desired format of the output.\n\n- `compact` (the default) for a compact,\n tab-separated manifest\n\n- `terra.bdbag` for a manifest in the\n [BDBag format][1]. This provides a ZIP file containing two\n manifests: one for Participants (aka Donors) and one for\n Samples (aka Specimens). For more on the format of the\n manifests see [documentation here][2].\n\n- `terra.pfb` for a manifest in the [PFB\n format][3]. This format is mainly used for exporting data to\n Terra.\n\n- `curl` for a [curl configuration\n file][4] manifest. This manifest can be used with the curl\n program to download all the files listed in the manifest.\n\n[1]: https://bd2k.ini.usc.edu/tools/bdbag/\n\n[2]: https://software.broadinstitute.org/firecloud/documentation/article?id=10954\n\n[3]: https://github.com/uc-cdis/pypfb\n\n[4]: https://curl.haxx.se/docs/manpage.html#-K\n" + } + ], + "responses": { + "301": { + "description": "\nA redirect indicating that the manifest preparation job\nhas started. Wait for\nthe recommended number of seconds (see `Retry-After`\nheader) and then follow the redirect to check the status\nof that job.\n", + "headers": { + "Location": { + "description": "\nThe URL of the manifest preparation job at\nthe [`GET\n /manifest/files/{token}`][2] endpoint.\n\n [2]: #operations-Manifests-get_fetch_manifest_files_token\n", + "schema": { + "type": "string", + "format": "url" + } + }, + "Retry-After": { + "description": "\nThe recommended number of seconds to wait before\nrequesting the URL specified in the `Location`\nheader\n", + "schema": { + "type": "string" + } + } + } + }, + "302": { + "description": "\nA redirect indicating that the manifest preparation job\nis already done. Immediately\nfollow the redirect to obtain the manifest contents.\n\nThe response body contains, for a number of commonly\nused shells, a command line suitable for downloading the\nmanifest.\n", + "headers": { + "Location": { + "description": "The URL of the manifest.\n Clients should not make any assumptions about\n any parts of the returned domain, except that\n the scheme will be `https`.\n", + "schema": { + "type": "string", + "format": "url" + } + } + } + } + } + } + }, + "/manifest/files/{token}": { + "parameters": [ + { + "name": "token", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "\nAn opaque string representing the manifest preparation job\n" + } + ], + "get": { + "tags": [ + "Manifests" + ], + "summary": "Determine status of a manifest preparation job", + "description": "\nCheck on the status of an ongoing manifest preparation job,\nreturning either\n\n- a 301 redirect to this endpoint if the manifest job is still\n running\n\n- a 302 redirect to the URL of the completed manifest.\n\nThis endpoint is not suitable for interactive use via the\nSwagger UI. Please use [GET /fetch/manifest/files/{token}][1]\ninstead.\n\n[1]: #operations-Manifests-get_fetch_manifest_files\n", + "parameters": [], + "responses": { + "301": { + "description": "\nA redirect indicating that the manifest preparation job\nis running. Wait for\nthe recommended number of seconds (see `Retry-After`\nheader) and then follow the redirect to check the status\nof the job again.\n", + "headers": { + "Location": { + "description": "\nThe URL of this endpoint\n", + "schema": { + "type": "string", + "format": "url" + } + }, + "Retry-After": { + "description": "\nThe recommended number of seconds to wait before\nrequesting the URL specified in the `Location`\nheader\n", + "schema": { + "type": "string" + } + } + } + }, + "302": { + "description": "\nA redirect indicating that the manifest preparation job\nis now done. Immediately\nfollow the redirect to obtain the manifest contents.\n\nThe response body contains, for a number of commonly\nused shells, a command line suitable for downloading the\nmanifest.\n", + "headers": { + "Location": { + "description": "The URL of the manifest.\n Clients should not make any assumptions about\n any parts of the returned domain, except that\n the scheme will be `https`.\n", + "schema": { + "type": "string", + "format": "url" + } + } + } + }, + "410": { + "description": "\nThe manifest preparation job has expired. Request a\nnew preparation using the `POST /manifest/files`\nendpoint.\n" + } + } + } + }, + "/fetch/manifest/files": { + "post": { + "tags": [ + "Manifests" + ], + "summary": "Initiate the preparation of a manifest via XHR", + "description": "\nCreate a manifest preparation job, returning a 200 status\nresponse whose JSON body emulates the HTTP headers that would be\nfound in a response to an equivalent request to the [POST\n/manifest/files][1] endpoint.\n\nWhenever client-side JavaScript code is used in a web\napplication to request the preparation of a manifest from Azul,\nthis endpoint should be used instead of [POST\n/manifest/files][1]. This way, the client can use XHR to make\nthe request, retaining full control over the handling of\nredirects and enabling the client to bypass certain limitations\non the native handling of redirects in web browsers. For\nexample, most browsers ignore the `Retry-After` header in\nredirect responses, causing them to prematurely exhaust the\nupper limit on the number of consecutive redirects, before the\nmanifest generation job is done.\n\n[1]: #operations-Manifests-post_manifest_files\n\nAny of the query parameters documented below can alternatively be passed as\na property of a JSON object in the body of the request. This can be useful\nin case the value of the `filters` query parameter causes the URL to exceed\nthe maximum length of 8192 characters, resulting in a 413 Request Entity Too\nLarge response.\n\nThe request `GET /index/foo?filters={\u2026}`, for example, is equivalent to a\n`POST /index/foo` request with the body `{\"filters\": {\u2026}}`.\n", + "parameters": [ + { + "name": "catalog", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "dcp2" + ], + "default": "dcp2" + }, + "description": "The name of the catalog to query." + }, + { + "name": "filters", + "in": "query", + "required": false, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "accessions": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "object", + "properties": { + "namespace": { + "type": "string", + "nullable": true + }, + "accession": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "aggregateLastModifiedDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "aggregateSubmissionDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "aggregateUpdateDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "assayType": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "object" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "biologicalSex": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "bionetworkName": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "bundleUuid": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "bundleVersion": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "cellCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "cellLineType": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "contactName": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "contentDescription": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "developmentStage": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "donorCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "donorDisease": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "effectiveCellCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "effectiveOrgan": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "entryId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileFormat": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileName": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileSize": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "fileSource": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "fileVersion": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "genusSpecies": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "institution": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "instrumentManufacturerModel": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "isIntermediate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "boolean", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "isTissueAtlasProject": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "boolean", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "laboratory": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "lastModifiedDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "libraryConstructionApproach": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "matrixCellCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "modelOrgan": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "modelOrganPart": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "nucleicAcidSource": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "organ": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "organPart": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "organismAge": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "object", + "properties": { + "value": { + "type": "string" + }, + "unit": { + "type": "string" + } + }, + "required": [ + "value", + "unit" + ], + "additionalProperties": false + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "organismAgeRange": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "contains": { + "type": "array", + "items": { + "anyOf": [ + { + "type": "number", + "format": "double" + }, + { + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "minItems": 2, + "maxItems": 2 + } + ] + } + } + }, + "required": [ + "contains" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "intersects": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number", + "format": "double" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "intersects" + ], + "additionalProperties": false + } + ] + }, + "pairedEnd": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "boolean", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "preservationMethod": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "project": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "projectDescription": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "projectEstimatedCellCount": { + "oneOf": [ + { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "integer", + "format": "int64", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + { + "type": "object", + "properties": { + "within": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "integer", + "format": "int64" + }, + "minItems": 2, + "maxItems": 2 + } + } + }, + "required": [ + "within" + ], + "additionalProperties": false + } + ] + }, + "projectId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "projectTitle": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "publicationTitle": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sampleDisease": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sampleEntityType": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sampleId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "selectedCellType": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sourceId": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "sourceSpec": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "specimenDisease": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "specimenOrgan": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "specimenOrganPart": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "submissionDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "tissueAtlas": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "object", + "properties": { + "atlas": { + "type": "string", + "nullable": true + }, + "version": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "updateDate": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + }, + "workflow": { + "type": "object", + "properties": { + "is": { + "type": "array", + "items": { + "type": "string", + "nullable": true + } + } + }, + "required": [ + "is" + ], + "additionalProperties": false + } + }, + "default": "{}", + "example": { + "cellCount": { + "within": [ + [ + 10000, + 1000000000 + ] + ] + } + } + } + } + }, + "description": "\nCriteria to filter entities from the search results.\n\nEach filter consists of a field name, a relation (relational operator),\nand an array of field values. The available relations are \"is\",\n\"within\", \"contains\", and \"intersects\". Multiple filters are combined\nusing \"and\" logic. An entity must match all filters to be included in\nthe response. How multiple field values within a single filter are\ncombined depends on the relation.\n\nFor the \"is\" relation, multiple values are combined using \"or\" logic.\nFor example, `{\"fileFormat\": {\"is\": [\"fastq\", \"fastq.gz\"]}}` selects\nentities where the file format is either \"fastq\" or \"fastq.gz\". For the\n\"within\", \"intersects\", and \"contains\" relations, the field values must\ncome in nested pairs specifying upper and lower bounds, and multiple\npairs are combined using \"and\" logic. For example, `{\"donorCount\":\n{\"within\": [[1,5], [5,10]]}}` selects entities whose donor organism\ncount falls within both ranges, i.e., is exactly 5.\n\nThe accessions field supports filtering for a specific accession and/or\nnamespace within a project. For example, `{\"accessions\": {\"is\": [\n{\"namespace\":\"array_express\"}]}}` will filter for projects that have an\n`array_express` accession. Similarly, `{\"accessions\": {\"is\": [\n{\"accession\":\"ERP112843\"}]}}` will filter for projects that have the\naccession `ERP112843` while `{\"accessions\": {\"is\": [\n{\"namespace\":\"array_express\", \"accession\": \"E-AAAA-00\"}]}}` will filter\nfor projects that match both values.\n\nThe organismAge field is special in that it contains two property keys:\nvalue and unit. For example, `{\"organismAge\": {\"is\": [{\"value\": \"20\",\n\"unit\": \"year\"}]}}`. Both keys are required. `{\"organismAge\": {\"is\":\n[null]}}` selects entities that have no organism age.\n\nSupported field names are: accessions, aggregateLastModifiedDate, aggregateSubmissionDate, aggregateUpdateDate, assayType, biologicalSex, bionetworkName, bundleUuid, bundleVersion, cellCount, cellLineType, contactName, contentDescription, developmentStage, donorCount, donorDisease, effectiveCellCount, effectiveOrgan, entryId, fileFormat, fileId, fileName, fileSize, fileSource, fileVersion, genusSpecies, institution, instrumentManufacturerModel, isIntermediate, isTissueAtlasProject, laboratory, lastModifiedDate, libraryConstructionApproach, matrixCellCount, modelOrgan, modelOrganPart, nucleicAcidSource, organ, organPart, organismAge, organismAgeRange, pairedEnd, preservationMethod, project, projectDescription, projectEstimatedCellCount, projectId, projectTitle, publicationTitle, sampleDisease, sampleEntityType, sampleId, selectedCellType, sourceId, sourceSpec, specimenDisease, specimenOrgan, specimenOrganPart, submissionDate, tissueAtlas, updateDate, workflow\n" + }, + { + "name": "format", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "compact", + "terra.bdbag", + "terra.pfb", + "curl" + ] + }, + "description": "\nThe desired format of the output.\n\n- `compact` (the default) for a compact,\n tab-separated manifest\n\n- `terra.bdbag` for a manifest in the\n [BDBag format][1]. This provides a ZIP file containing two\n manifests: one for Participants (aka Donors) and one for\n Samples (aka Specimens). For more on the format of the\n manifests see [documentation here][2].\n\n- `terra.pfb` for a manifest in the [PFB\n format][3]. This format is mainly used for exporting data to\n Terra.\n\n- `curl` for a [curl configuration\n file][4] manifest. This manifest can be used with the curl\n program to download all the files listed in the manifest.\n\n[1]: https://bd2k.ini.usc.edu/tools/bdbag/\n\n[2]: https://software.broadinstitute.org/firecloud/documentation/article?id=10954\n\n[3]: https://github.com/uc-cdis/pypfb\n\n[4]: https://curl.haxx.se/docs/manpage.html#-K\n" + } + ], + "responses": { + "200": { + "description": "\nWhen handling this response, clients should wait the\nnumber of seconds given in the `Retry-After` property of\nthe response body and then make another XHR request to\nthe URL specified in the `Location` property.\n\nFor a detailed description of these properties see the\ndocumentation for the respective response headers\ndocumented under \n[POST /manifest/files][1].\n\n[1]: #operations-Manifests-post_manifest_files\n\n\nNote: For a 200 status code response whose body has the\n`Status` property set to 302, the `Location` property\nmay reference the [GET /manifest/files/{token}][2]\nendpoint and that endpoint may return yet another\nredirect, this time a genuine (not emulated) 302 status\nredirect to the actual location of the manifest.\n\n[2]: #operations-Manifests-get_manifest_files\n\nNote: A 200 status response with a `Status` property of\n302 in its body additionally contains a `CommandLine`\nproperty that lists, for a number of commonly used\nshells, a command line suitable for downloading the\nmanifest.\n", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "Status": { + "type": "integer", + "format": "int64" + }, + "Location": { + "type": "string", + "format": "url" + }, + "Retry-After": { + "type": "integer", + "format": "int64" + }, + "CommandLine": { + "type": "object", + "properties": { + "cmd.exe": { + "type": "string" + }, + "bash": { + "type": "string" + } + }, + "required": [ + "cmd.exe", + "bash" + ], + "additionalProperties": false + } + }, + "required": [ + "Status", + "Location" + ], + "additionalProperties": false + } + } + } + } + } + }, "put": { "tags": [ "Manifests" ], "summary": "Initiate the preparation of a manifest via XHR", - "description": "\nCreate a manifest preparation job, returning a 200 status\nresponse whose JSON body emulates the HTTP headers that would be\nfound in a response to an equivalent request to the [PUT\n/manifest/files][1] endpoint.\n\nWhenever client-side JavaScript code is used in a web\napplication to request the preparation of a manifest from Azul,\nthis endpoint should be used instead of [PUT\n/manifest/files][1]. This way, the client can use XHR to make\nthe request, retaining full control over the handling of\nredirects and enabling the client to bypass certain limitations\non the native handling of redirects in web browsers. For\nexample, most browsers ignore the `Retry-After` header in\nredirect responses, causing them to prematurely exhaust the\nupper limit on the number of consecutive redirects, before the\nmanifest generation job is done.\n\n[1]: #operations-Manifests-put_manifest_files\n\nAny of the query parameters documented below can alternatively be passed as\na property of a JSON object in the body of the request. This can be useful\nin case the value of the `filters` query parameter causes the URL to exceed\nthe maximum length of 8192 characters, resulting in a 413 Request Entity Too\nLarge response.\n\nThe request `GET /index/foo?filters={\u2026}`, for example, is equivalent to a\n`POST /index/foo` request with the body `{\"filters\": {\u2026}}`.\n", + "description": "\nCreate a manifest preparation job, returning a 200 status\nresponse whose JSON body emulates the HTTP headers that would be\nfound in a response to an equivalent request to the [POST\n/manifest/files][1] endpoint.\n\nWhenever client-side JavaScript code is used in a web\napplication to request the preparation of a manifest from Azul,\nthis endpoint should be used instead of [POST\n/manifest/files][1]. This way, the client can use XHR to make\nthe request, retaining full control over the handling of\nredirects and enabling the client to bypass certain limitations\non the native handling of redirects in web browsers. For\nexample, most browsers ignore the `Retry-After` header in\nredirect responses, causing them to prematurely exhaust the\nupper limit on the number of consecutive redirects, before the\nmanifest generation job is done.\n\n[1]: #operations-Manifests-post_manifest_files\n\nAny of the query parameters documented below can alternatively be passed as\na property of a JSON object in the body of the request. This can be useful\nin case the value of the `filters` query parameter causes the URL to exceed\nthe maximum length of 8192 characters, resulting in a 413 Request Entity Too\nLarge response.\n\nThe request `GET /index/foo?filters={\u2026}`, for example, is equivalent to a\n`POST /index/foo` request with the body `{\"filters\": {\u2026}}`.\n", "parameters": [ { "name": "catalog", @@ -10893,7 +13606,7 @@ ], "responses": { "200": { - "description": "\nWhen handling this response, clients should wait the\nnumber of seconds given in the `Retry-After` property of\nthe response body and then make another XHR request to\nthe URL specified in the `Location` property.\n\nFor a detailed description of these properties see the\ndocumentation for the respective response headers\ndocumented under \n[PUT /manifest/files][1].\n\n[1]: #operations-Manifests-put_manifest_files\n\n\nNote: For a 200 status code response whose body has the\n`Status` property set to 302, the `Location` property\nmay reference the [GET /manifest/files/{token}][2]\nendpoint and that endpoint may return yet another\nredirect, this time a genuine (not emulated) 302 status\nredirect to the actual location of the manifest.\n\n[2]: #operations-Manifests-get_manifest_files\n\nNote: A 200 status response with a `Status` property of\n302 in its body additionally contains a `CommandLine`\nproperty that lists, for a number of commonly used\nshells, a command line suitable for downloading the\nmanifest.\n", + "description": "\nWhen handling this response, clients should wait the\nnumber of seconds given in the `Retry-After` property of\nthe response body and then make another XHR request to\nthe URL specified in the `Location` property.\n\nFor a detailed description of these properties see the\ndocumentation for the respective response headers\ndocumented under \n[POST /manifest/files][1].\n\n[1]: #operations-Manifests-post_manifest_files\n\n\nNote: For a 200 status code response whose body has the\n`Status` property set to 302, the `Location` property\nmay reference the [GET /manifest/files/{token}][2]\nendpoint and that endpoint may return yet another\nredirect, this time a genuine (not emulated) 302 status\nredirect to the actual location of the manifest.\n\n[2]: #operations-Manifests-get_manifest_files\n\nNote: A 200 status response with a `Status` property of\n302 in its body additionally contains a `CommandLine`\nproperty that lists, for a number of commonly used\nshells, a command line suitable for downloading the\nmanifest.\n", "content": { "application/json": { "schema": { diff --git a/test/integration_test.py b/test/integration_test.py index e8848725c6..0bf3b3d561 100644 --- a/test/integration_test.py +++ b/test/integration_test.py @@ -625,7 +625,7 @@ def get_url(*args, **kwargs): # resilience against DOS attacks. def worker(_): - response = self._check_endpoint(PUT, '/manifest/files', args=args, fetch=fetch) + response = self._check_endpoint(POST, '/manifest/files', args=args, fetch=fetch) validator(catalog, response) num_workers = 3 @@ -1468,7 +1468,7 @@ def bundle_uuids(hit: JSON) -> set[str]: manifest_url = furl(url=endpoint, path='/manifest/files', args=params) def assert_manifest(expected_bundles): - manifest = BytesIO(self._get_url_content(PUT, manifest_url)) + manifest = BytesIO(self._get_url_content(POST, manifest_url)) manifest_rows = self._read_csv_manifest(manifest) all_found_bundles = set() for row in manifest_rows: @@ -1499,7 +1499,7 @@ def assert_manifest(expected_bundles): manifest_url.set(args=dict(catalog=catalog, filters=json.dumps(filters), format='curl')) - method = PUT + method = POST while True: with self._service_account_credentials: response = self._get_url_unchecked(method, manifest_url) diff --git a/test/service/test_manifest.py b/test/service/test_manifest.py index 0a52a4d7e2..d95f55597c 100644 --- a/test/service/test_manifest.py +++ b/test/service/test_manifest.py @@ -1227,14 +1227,14 @@ def test_curl_manifest(self): def test_manifest_format_validation(self): url = self.base_url.set(path='/manifest/files', args=dict(format='invalid-type')) - response = requests.put(str(url)) + response = requests.post(str(url)) self.assertEqual(400, response.status_code, response.content) def test_manifest_filter_validation(self): url = self.base_url.set(path='/manifest/files', args=dict(format='compact', filters=dict(fileFormat=['pdf']))) - response = requests.put(str(url)) + response = requests.post(str(url)) self.assertEqual(400, response.status_code, response.content) @manifest_test @@ -1460,7 +1460,12 @@ def test_manifest(self, Verify the response from manifest endpoints for all manifest formats """ - def test(*, format: ManifestFormat, fetch: bool, url: Optional[furl] = None): + def test(*, + format: ManifestFormat, + fetch: bool, + initial_method: Optional[str] = None, + url: Optional[furl] = None): + assert initial_method or url, (format, fetch) object_url = furl('https://url.to.manifest?foo=bar') default_file_name = 'some_object_key.csv' manifest_key = ManifestKey(catalog=self.catalog, @@ -1507,7 +1512,7 @@ def test(*, format: ManifestFormat, fetch: bool, url: Optional[furl] = None): 'bash': f'curl {options} {file_name} {expected_url_for_bash}' } if url is None: - method, request_url = 'PUT', self.base_url.set(path=path, args=args) + method, request_url = initial_method, self.base_url.set(path=path, args=args) else: assert not fetch method, request_url = 'GET', url @@ -1518,7 +1523,7 @@ def test(*, format: ManifestFormat, fetch: bool, url: Optional[furl] = None): 'Location': str(expected_url), 'CommandLine': expected } - response = requests.request('PUT', str(request_url)) + response = requests.request(initial_method, str(request_url)) self.assertEqual(200, response.status_code) self.assertEqual(expected, response.json()) self.assertEqual('application/json', response.headers['Content-Type']) @@ -1537,8 +1542,9 @@ def test(*, format: ManifestFormat, fetch: bool, url: Optional[furl] = None): for format in self.app_module.app.metadata_plugin.manifest_formats: for fetch in True, False: - with self.subTest(format=format, fetch=fetch): - test(format=format, fetch=fetch) + for initial_method in ['POST', 'PUT']: + with self.subTest(format=format, fetch=fetch, initial_method=initial_method): + test(format=format, fetch=fetch, initial_method=initial_method) class TestManifestExpiration(AzulUnitTestCase): diff --git a/test/service/test_manifest_async.py b/test/service/test_manifest_async.py index ae8052e77f..0ee450c4ac 100644 --- a/test/service/test_manifest_async.py +++ b/test/service/test_manifest_async.py @@ -220,7 +220,7 @@ def test(self, get_cached_manifest, get_manifest, _sfn): 'startDate': 123 } for i, expected_status in enumerate(3 * [301] + [302]): - response = requests.request(method='PUT' if i == 0 else 'GET', + response = requests.request(method='POST' if i == 0 else 'GET', url=str(url), allow_redirects=False) if fetch: diff --git a/test/service/test_request_validation.py b/test/service/test_request_validation.py index c0f1a9d20c..90d270f086 100644 --- a/test/service/test_request_validation.py +++ b/test/service/test_request_validation.py @@ -40,7 +40,7 @@ def tearDownClass(cls): def assertResponseStatus(self, url: furl, status: int) -> Response: if str(url.path) in {'/manifest/files', '/fetch/manifest/files'}: - method = 'PUT' + method = 'POST' else: method = 'GET' response = requests.request(method, str(url))