Skip to content

Commit da5705f

Browse files
committed
Frist Commit
0 parents  commit da5705f

File tree

479 files changed

+57689
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

479 files changed

+57689
-0
lines changed

.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Xcode
2+
#
3+
.DS_Store
4+
.idea/
5+
Project/Phoenix/remote/.git
6+
build/
7+
*.pbxuser
8+
!default.pbxuser
9+
*.mode1v3
10+
!default.mode1v3
11+
*.mode2v3
12+
!default.mode2v3
13+
*.perspectivev3
14+
!default.perspectivev3
15+
xcuserdata
16+
*.xccheckout
17+
*.moved-aside
18+
DerivedData
19+
*.hmap
20+
*.ipa
21+
*.xcuserstate
22+
# CocoaPods
23+
#
24+
# We recommend against adding the Pods directory to your .gitignore. However
25+
# you should judge for yourself, the pros and cons are mentioned at:
26+
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
27+
#
28+
# Pods/
29+
Project/Phoenix/Images.xcassets/food/img_douguo.imageset/Contents.json
30+
Project/Phoenix/Images.xcassets/food/img_douguo.imageset/img_douguo.png

Examples/blueprint.apib

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
FORMAT: 1A
2+
# public
3+
4+
## JSONIP [/]
5+
### GET [GET]
6+
+ Request (application/json)
7+
{
8+
"ip": "116.226.231.82",
9+
"about": "/about",
10+
"number": 123.33
11+
}
12+
13+
14+
+ Response 200 (application/json)
15+
+ Attributes (IPInfo)
16+
17+
## GitHub [/users/{name}]
18+
### User [GET]
19+
+ Response 200 (application/json)
20+
+ Attributes (UserInfo)
21+
22+
## GitHub [/repos/vmg/redcarpet/issues]
23+
### Issue [GET]
24+
+ Response 200 (application/json)
25+
+ Attributes (array[Issue])
26+
27+
# Data Structures
28+
29+
## IPInfo (object)
30+
+ ip: 10.100.2.3 (string)
31+
+ about: Hello World (string)
32+
+ users(array[Author])
33+
34+
## Author (object)
35+
+ name: Boba Fett
36+
+ email: fett@intergalactic.com
37+
38+
## UserInfo(object)
39+
+ avatarUrl: (string)
40+
+ bio: (string)
41+
+ blog: (string)
42+
+ company: (string)
43+
+ createdAt: (string)
44+
+ email: (string)
45+
+ eventsUrl: (string)
46+
+ followers: 22 (number)
47+
+ followersUrl: (string)
48+
+ following: 91 (number)
49+
+ followingUrl: (string)
50+
+ gistsUrl: (string)
51+
+ gravatarId: (string)
52+
+ hireable: (boolean)
53+
+ htmlUrl: (string)
54+
+ id: 985343 (number)
55+
+ location: (string)
56+
+ login: (string)
57+
+ name: (string)
58+
+ organizationsUrl: (string)
59+
+ publicGists: 0 (number)
60+
+ publicRepos: 26 (number)
61+
+ receivedEventsUrl: (string)
62+
+ reposUrl: (string)
63+
+ siteAdmin: (boolean)
64+
+ starredUrl: (string)
65+
+ subscriptionsUrl: (string)
66+
+ type: (string)
67+
+ updatedAt: (string)
68+
+ url: (string)
69+
70+
## Issue (object)
71+
+ assignee: (string)
72+
+ assignees: (array[string])
73+
+ body: (string)
74+
+ closedAt: (string)
75+
+ comments: 5 (number)
76+
+ commentsUrl: (string)
77+
+ createdAt: (string)
78+
+ eventsUrl: (string)
79+
+ htmlUrl: (string)
80+
+ id: 168114317 (number)
81+
+ labels: (array[string])
82+
+ labelsUrl: (string)
83+
+ locked: (boolean)
84+
+ milestone: (string)
85+
+ number: 568 (number)
86+
+ repositoryUrl: (string)
87+
+ state: (string)
88+
+ title: (string)
89+
+ updatedAt: (string)
90+
+ url: (string)
91+
+ user: (IssueUser)
92+
93+
## IssueUser (object)
94+
+ avatarUrl: (string)
95+
+ eventsUrl: (string)
96+
+ followersUrl: (string)
97+
+ followingUrl: (string)
98+
+ gistsUrl: (string)
99+
+ gravatarId: (string)
100+
+ htmlUrl: (string)
101+
+ id: 11599514 (number)
102+
+ login: (string)
103+
+ organizationsUrl: (string)
104+
+ receivedEventsUrl: (string)
105+
+ reposUrl: (string)
106+
+ siteAdmin: (boolean)
107+
+ starredUrl: (string)
108+
+ subscriptionsUrl: (string)
109+
+ type: (string)
110+
+ url: (string)

0 commit comments

Comments
 (0)