forked from times-yasunori/awesome-yasunori
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
46 lines (46 loc) · 1.37 KB
/
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "JSON schema for Awesome yasunori",
"type": "object",
"properties": {
"yasunori": {
"type": "array",
"description": "A top level key of awesome yasunori TOML.",
"items": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The unique key to an awesome yasunori entry."
},
"title": {
"type": "string",
"description": "The title of awesome yasunori entry."
},
"date": {
"type": "string",
"description": "Published date of awesome yasunori entry. format is ISO date."
},
"at": {
"type": "string",
"description": "Where is say the awesome yasunori entry?"
},
"senpan": {
"type": "string",
"description": "Who is say the awesome yasunori entry?"
},
"content": {
"type": "string",
"description": "The main content of awesome yasunori entry."
},
"meta": {
"type": "string",
"description": "The meta content of awesome yasunori entry."
}
},
"required": ["id", "title", "date", "at", "senpan", "content"]
}
}
},
"required": ["yasunori"]
}