Skip to content

Commit 26b5302

Browse files
committed
modify feature endpoint
1 parent 1d09703 commit 26b5302

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

neurostore-openapi.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ paths:
2929
summary: POST/create a pipeline
3030
tags:
3131
- pipelines
32+
security:
33+
- JSON-Web-Token: []
3234
requestBody:
3335
content:
3436
application/json:
@@ -37,6 +39,8 @@ paths:
3739
responses:
3840
'201':
3941
description: Created
42+
'401':
43+
description: Unauthorized - Authentication required
4044
/pipelines/{id}:
4145
get:
4246
summary: GET a pipeline by ID
@@ -166,6 +170,16 @@ paths:
166170
summary: GET a list of pipeline run results
167171
tags:
168172
- pipeline-study-results
173+
parameters:
174+
- name: feature_filter
175+
in: query
176+
description: Filter results by feature content using jsonpath syntax
177+
required: false
178+
schema:
179+
type: array
180+
items:
181+
type: string
182+
example: 'groups.diagnosis=ADHD'
169183
responses:
170184
'200':
171185
description: OK

0 commit comments

Comments
 (0)