-
Notifications
You must be signed in to change notification settings - Fork 11
/
licenses-schema.json
45 lines (45 loc) · 1.12 KB
/
licenses-schema.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"items": {
"type": "object",
"description": "License descriptor",
"properties": {
"id": {
"type": "string",
"description": "SPDX ID of the license"
},
"replace": {
"type": "object",
"description": "Keywords that need to be replaced in the license",
"properties": {
"year": {
"type": "string",
"description": "Copyright year"
},
"name": {
"type": "string",
"description": "Copyright holder"
}
}
},
"copyright": {
"type": "string",
"description": "String to remove when skipping the copyright notice in the license"
},
"optional": {
"type": "array",
"description": "Strings to remove when skipping the optional contents of the license",
"items": {
"type": "string",
"description": "Optional string"
},
"uniqueItems": true
}
},
"required": [
"id"
]
},
"uniqueItems": true
}