-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.raml
More file actions
70 lines (70 loc) · 1.15 KB
/
api.raml
File metadata and controls
70 lines (70 loc) · 1.15 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#%RAML 1.0
types:
To-Do:
properties:
id:
example: 1
type: number
format: int
title:
example: Example
type: string
checked:
default: false
example: false
type: boolean
dueDate:
example: 2023-10-03
type: date-only
title: My To-Do API
mediaType:
- application/json
version: 1.0.0
/todos:
get:
queryParameters:
titleContains?:
example: Example
type: string
isChecked?:
example: true
type: boolean
fromDate?:
example: 2023-10-03
type: date-only
toDate?:
example: 2023-10-03
type: date-only
responses:
"200":
body:
items:
type: To-Do
post:
body:
type: To-Do
responses:
"201":
body:
type: To-Do
/todos/{id}:
get:
responses:
"200":
body:
type: To-Do
put:
body:
type: To-Do
responses:
"200":
body:
type: To-Do
delete:
responses:
"204": {}
uriParameters:
id:
example: 1
type: number
format: int