-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapis.json
115 lines (115 loc) · 3.43 KB
/
apis.json
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "Example API",
"type": "Index",
"description": "This is an example APIs.json file, demonstrating what is possible with\nthe API discovery specification.",
"image": "https://kinlane-productions.s3.amazonaws.com/apis-json/apis-json-logo.jpg",
"tags": [
"Application Programming Interface",
"API"
],
"created": "2014-04-07",
"modified": "2020-09-03",
"url": "http://example.com/apis.json",
"specificationVersion": "0.14",
"apis": [
{
"name": "Example API",
"description": "This provides details about a specific API, telling what is possible.",
"image": "https://kinlane-productions.s3.amazonaws.com/apis-json/apis-json-logo.jpg",
"humanURL": "http://example.com",
"baseURL": "http://api.example.com",
"tags": [
"API",
"Application Programming Interface"
],
"properties": [
{
"type": "Documentation",
"url": "https://example.com/documentation"
},
{
"type": "OpenAPI",
"url": "http://example.com/openapi.json"
},
{
"type": "JSONSchema",
"url": "http://example.com/json-schema.json"
}
],
"contact": [
{
"FN": "APIs.json",
"email": "info@apisjson.org",
"X-twitter": "apisjson"
}
]
}
],
"specifications": [
{
"name": "OpenAPI",
"description": "OpenAPI is used as the contract for all of our APIs.",
"image": "https://kinlane-productions.s3.amazonaws.com/specifications/openapi.png",
"url": "https://openapis.org"
},
{
"name": "JSON Schema",
"description": "JSON Schema is used to define all of the underlying objects used.",
"image": "https://kinlane-productions.s3.amazonaws.com/specifications/json-schema.png",
"url": "https://json-schema.org/"
},
{
"name": "Postman Collection",
"description": "Each API possess one or many Postman collections for putting API to work.",
"image": "https://kinlane-productions.s3.amazonaws.com/specifications/postman-logo.png",
"url": "https://www.postman.com/collection/"
}
],
"tools": [
{
"name": "Example Tool",
"description": "This is an open source tool that can be used with this API.",
"image": "https://kinlane-productions.s3.amazonaws.com/apis-json/apis-json-logo.jpg",
"url": "http://github.com/organization/tool/",
"tags": [
"Open Source",
"Tooling"
]
}
],
"common": [
{
"type": "Signup",
"url": "https://example.com/signup"
},
{
"type": "Authentication",
"url": "http://example.com/authentication"
},
{
"type": "Login",
"url": "https://example.com/login"
},
{
"type": "Blog",
"url": "http://example.com/blog"
},
{
"type": "Pricing",
"url": "http://example.com/pricing"
}
],
"include": [
{
"name": "Another Example API",
"url": "http://example.com/apis.json"
}
],
"maintainers": [
{
"FN": "Kin Lane",
"X-twitter": "apievangelist",
"email": "info@apievangelist.com"
}
]
}