-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnen-committees-openapi3.yaml
49 lines (48 loc) · 1.28 KB
/
nen-committees-openapi3.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
openapi: 3.0.0
servers:
- url: 'https://bsd24dv3z3.execute-api.eu-central-1.amazonaws.com/prod/'
info:
description: See [SDO Harmonized Interfaces](https://bitbucket.org/sdo-hapi/) for more information about this API
version: 1.1.1
title: NEN Committees API
tags:
- name: Committees
description: Committees API
paths:
/search:
get:
tags:
- Committees
summary: Search committees
operationId: searchCommitteesUsingGET
parameters:
- name: q
in: query
description: the search query
required: true
allowEmptyValue: false
schema:
type: string
responses:
'200':
description: OK
'400':
description: Bad request (parameters syntax or semantics)
'/committees/{urn}':
get:
tags:
- Committees
summary: Retrieve a specific committee by its URN
operationId: getCommitteeUsingGET
parameters:
- name: urn
in: path
description: the committee URN
required: true
schema:
type: string
responses:
'200':
description: Committee found
'404':
description: Committee not found