-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.schema.json
45 lines (44 loc) · 1.03 KB
/
project.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#",
"title": "OSF Hackathon 1 Project",
"description": "An entry in the first OSF Hackathon",
"type": "object",
"properties": {
"name": {
"description": "Your real name",
"type": "string"
},
"github": {
"description": "Your GitHub username",
"type": "string"
},
"discord": {
"description": "Your Discord USERNAME — not display name, not nickname",
"type": "string"
},
"email": {
"description": "Your email address",
"type": "string"
},
"repo": {
"description": "The NAME of the repo — not including username",
"type": "string"
},
"languages": {
"description": "The languages you used in your project",
"type": "array"
},
"title": {
"description": "The title of your project",
"type": "string"
},
"install": {
"description": "A one-line command to install or download your project",
"type": "string"
},
"requires": {
"description": "All tools required to build and run your project",
"type": "array"
}
}
}