-
Notifications
You must be signed in to change notification settings - Fork 29
/
library.json
64 lines (64 loc) · 2.06 KB
/
library.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
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"title": "Library",
"description": "An API library.",
"required": [
"repo",
"language",
"name",
"description",
"package_link",
"package_link_name"
],
"properties": {
"repo": {
"$id": "#/properties/repo",
"type": "string",
"title": "Library repository",
"description": "Short name for the library repository."
},
"language": {
"$id": "#/properties/language",
"type": "string",
"title": "Library language",
"description": "The programming language of the library."
},
"name": {
"$id": "#/properties/name",
"type": "string",
"title": "Library name",
"description": "Full name of the API library."
},
"description": {
"$id": "#/properties/description",
"type": "string",
"title": "Library description",
"description": "The displayed description of the library."
},
"package_link": {
"$id": "#/properties/package_link",
"type": "string",
"title": "Library description",
"description": "The displayed description of the library."
},
"badge_image": {
"$id": "#/properties/badge_image",
"type": "string",
"title": "Badge image URL",
"description": "A link to a badge image for the library (e.g. the npm badge)."
},
"badge_url": {
"$id": "#/properties/badge_url",
"type": "string",
"title": "Badge URL",
"description": "A link to go when the badge image is clicked on the website."
},
"example_usage": {
"$id": "#/properties/example_usage",
"type": "string",
"title": "Example library usage",
"description": "Exemplar code for using the library."
}
}
}