From 811ad055db7a411929fa9894d4d789d7766338c8 Mon Sep 17 00:00:00 2001 From: James Kent Date: Tue, 1 Apr 2025 14:29:12 -0500 Subject: [PATCH 1/2] allow description and derived_from to be nullable --- neurostore-openapi.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neurostore-openapi.yml b/neurostore-openapi.yml index 95fa30d..f80225d 100644 --- a/neurostore-openapi.yml +++ b/neurostore-openapi.yml @@ -1335,6 +1335,7 @@ components: type: string description: type: string + nullable: true version: type: string study_dependent: @@ -1345,6 +1346,7 @@ components: type: boolean derived_from: type: string + nullable: true pipeline-list: type: object properties: From 752b318c8a100ef78c50dad3e0daa8f0f717c05d Mon Sep 17 00:00:00 2001 From: James Kent Date: Tue, 1 Apr 2025 15:40:16 -0500 Subject: [PATCH 2/2] add pipeline argument to see pipeline configs for a pipeline --- neurostore-openapi.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/neurostore-openapi.yml b/neurostore-openapi.yml index f80225d..1efcdaa 100644 --- a/neurostore-openapi.yml +++ b/neurostore-openapi.yml @@ -96,6 +96,16 @@ paths: summary: GET a list of pipeline configs tags: - pipeline-configs + parameters: + - name: pipeline + in: query + description: Filter configs by pipeline name + required: false + schema: + type: array + items: + type: string + example: 'TestPipeline' responses: '200': description: OK