-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi-blueprint-simple.html
62 lines (39 loc) · 1.08 KB
/
api-blueprint-simple.html
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
<!DOCTYPE html>
<html>
<title>mindmap.js</title>
<!-- jQuery -->
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery-ui.min.js" type="text/javascript" ></script>
<!-- mindmap.js -->
<link href="css/mindmap.css" rel="stylesheet" type="text/css"/>
<script src="js/mindmap.min.js" type="text/javascript"></script>
<xmp theme="slate" style="display:none;">
# My API
Mind mapped API
## Group A
Lorem ipsum dolor sit amet, **consectetur adipiscing elit.**
### Resource A1 [/resource/a1]
First resource in `Group A`
#### Rerieve Resource A1 [GET]
+ Response 200
Hello World!
## Group B
This is group of resources "B"
### Resource B1 [/resource/b1]
Nothing to see here
### Resource B2 [/resrouce/b2]
This resource has a more complex structure of request and responses
#### Retrieve B2 [GET]
+ Request
Give me Something
+ Response 200
This is the successful response
+ Headers
X-Meaning: 42
+ Body
{ ... }
+ Schema
{ ... }
#### Remove B2 [DELETE]
+ Response 204
</html>