This repository was archived by the owner on Apr 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathschema.json
More file actions
161 lines (161 loc) · 4.96 KB
/
Copy pathschema.json
File metadata and controls
161 lines (161 loc) · 4.96 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"channel": {
"acast": "https://shows.acast.com/in-lieu-of-fun",
"crowdcast": "https://www.crowdcast.io/inlieuoffun",
"youTube": "https://www.youtube.com/channel/UC8lKFNnYE1War3a41Q41fMw",
"discord": "https://discord.gg/U3Vd3ESYAd",
"groups": "https://groups.google.com/g/in-lieu-of-fun"
},
"template": {
"base": "https://inlieuof.fun",
"html": {
"guests": "{base}/guests.html",
"episodes": "{base}/episodes.html",
"latest": "{base}/episode/latest",
"episode": "{base}/episode/{number}"
},
"json": {
"guests": "{base}/guests.json",
"episodes": "{base}/episodes.json",
"latest": "{base}/latest.json",
"episode": "{base}/episode/{number}.json"
},
"stream": {
"latest": "{base}/stream/latest",
"audio": "{base}/audio/{number}",
"episode": "{base}/stream/{number}",
"replay": "{base}/replay/{number}"
}
},
"data": {
"guest": {
"description": "Details about a guest",
"type": "object",
"fields": {
"name": {
"type": "string",
"description": "The full name of the guest",
"required": true
},
"twitter": {
"type": "string",
"description": "The twitter handle of the guest, without leading @"
},
"url": {
"type": "string",
"description": "The URL of the guest's home page or profile"
},
"notes": {
"type": "string",
"description": "One-line biographical notes for the guest list"
},
"episodes": {
"type": "array",
"element": "number",
"description": "The episodes the guest has appeared on",
"required": true
}
}
},
"episode": {
"description": "Metadata describing an episode",
"type": "object",
"fields": {
"episode": {
"type": "oneof",
"options": [
"number",
"string"
],
"description": "The episode number or label",
"required": true
},
"season": {
"type": "number",
"description": "The season number of this episode"
},
"airDate": {
"type": "string",
"format": "YYYY-MM-DD",
"description": "The date when the episode aired",
"required": true
},
"youTubeURL": {
"type": "string",
"format": "url",
"description": "Link to the episode stream on YouTube",
"required": true
},
"crowdcastURL": {
"type": "string",
"format": "url",
"description": "Link to the episode stream on Crowdcast"
},
"acastURL": {
"type": "string",
"format": "url",
"description": "Link to the episode audio stream player on Acast"
},
"audioFileURL": {
"type": "string",
"format": "url",
"description": "Direct link to the episode audio file on Acast"
},
"links": {
"description": "Hyperlinks to display in the episode log",
"type": "array",
"element": {
"type": "object",
"fields": {
"title": {
"type": "string",
"description": "The anchor text for the link"
},
"url": {
"type": "string",
"format": "url",
"description": "The URL to link to"
}
}
}
},
"summary": {
"type": "string",
"description": "A one-line summary of the episode content"
},
"guestNames": {
"type": "array",
"description": "The names of the guests for this episode",
"element": {
"type": "string"
}
},
"tags": {
"description": "Category tags for episode content",
"type": "array",
"element": {
"type": "string",
"values": {
"announcement": "An important announcement takes place in this episode",
"cheese-night": "The hosts eat cheese and there is no scheduled guest",
"mystery-guest": "Mystery Guest day in which guests are not pre-announced",
"no-transcript": "Indicates the episode does not have a text transcript",
"pugilism": "Multiple guests scheduled to debate on a topic",
"special": "Indicates the episode should be highlighted as special",
"truth-from-fiction": "Guest tells a story, audience guesses whether it is true"
}
}
},
"hasDetail": {
"type": "bool",
"description": "Whether the episode has a textual description"
},
"detail": {
"type": "string",
"format": "markdown",
"description": "A detailed description and notes for the episode"
}
}
}
}
}