-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpackage-schema.json
More file actions
34 lines (33 loc) · 866 Bytes
/
package-schema.json
File metadata and controls
34 lines (33 loc) · 866 Bytes
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "http://matplotlib.org/mpl-third-party/schema.yml",
"type": "object",
"required": ["name", "repo", "section", "description"],
"properties": {
"name": {"type": "string"},
"repo": {
"type": "string",
"pattern": "(^[^/]+/[^/]+$)|(^(https://))"
},
"section": {"type": "string"},
"description": {
"type": "string",
"pattern": "^.+\\.$"
},
"badges": {
"type": "array",
"items": {"type": "string"},
"uniqueItems": true
},
"conda_channel": {"type": "string"},
"conda_package": {"type": "string"},
"keywords": {
"type": "array",
"items": {"type": "string"},
"uniqueItems": true
},
"pypi_name": {"type": "string"},
"site": {"type": "string"}
},
"additionalProperties": false
}