-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.json
More file actions
33 lines (33 loc) · 792 Bytes
/
Copy pathschema.json
File metadata and controls
33 lines (33 loc) · 792 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "dev-stacks entry",
"type": "object",
"required": ["canonical", "aliases", "category"],
"additionalProperties": false,
"properties": {
"canonical": {
"type": "string",
"minLength": 1,
"maxLength": 60,
"description": "Official/preferred spelling, e.g. 'Next.js'."
},
"aliases": {
"type": "array",
"items": { "type": "string", "minLength": 1, "maxLength": 60 },
"uniqueItems": true
},
"category": {
"type": "string",
"enum": [
"language",
"framework",
"database",
"platform",
"cloud",
"tool",
"concept"
]
},
"description": { "type": "string", "maxLength": 200 }
}
}