-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.schema.json
48 lines (48 loc) · 1.42 KB
/
icons.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
46
47
48
{
"$id": "https://icons.josemi.xyz/icons.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Icons schema",
"description": "A JSON schema for icons",
"type": "object",
"properties": {
"version": {
"type": "string"
},
"icons": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"componentName": {
"type": "string"
},
"version": {
"type": "string"
},
"path": {
"type": "string"
},
"contributors": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1,
"uniqueItems": true
}
}
}
}
}
}