Template:StreamIndexEntry: Difference between revisions
Appearance
Created page with "<includeonly>|- | {{{index}}} || {{{date}}} || [[{{{game}}}]] || {{{game_index}}} || {{{vods}}} </includeonly><noinclude> <templatedata> { "params": {}, "description": "An entry in the stream index.", "format": "inline" } </templatedata></noinclude>" |
No edit summary |
||
Line 1: | Line 1: | ||
<includeonly>|- | <includeonly>|- | ||
| {{{index}}} || {{{date}}} || [[{{{game}}}]] || {{{game_index}}} || {{{vods}}} | | {{{index}}} || {{{date}}} || [[{{{game}}}]] || {{{game_index|}}} || {{{vods|}}} | ||
</includeonly><noinclude> | </includeonly><noinclude> | ||
<templatedata> | <templatedata> | ||
{ | { | ||
"params": {}, | "params": { | ||
"index": { | |||
"label": "Stream Number", | |||
"description": "The number of the stream, relative to streams Joe has ever done.", | |||
"type": "number", | |||
"required": true | |||
}, | |||
"date": { | |||
"label": "Date", | |||
"description": "The date the stream started airing. Give this in ISO 8601 format (YYYY-MM-DD).", | |||
"type": "date", | |||
"required": true | |||
}, | |||
"game": { | |||
"label": "Game Name", | |||
"description": "The name of the game played in the stream.", | |||
"type": "string", | |||
"required": true | |||
}, | |||
"game_index": { | |||
"label": "Game Stream Index", | |||
"description": "The number of the stream of this particular game, if it is part of a series of streams.", | |||
"type": "number" | |||
}, | |||
"vods": { | |||
"label": "VoD Links", | |||
"description": "A list of links to VoDs for the stream. Should be an hlist of any variants (e.g: with chat, without chat) if they exist.", | |||
"type": "content" | |||
}, | |||
"part": { | |||
"label": "Part", | |||
"description": "Which part of the stream this entry is for, a number starting at 1, if the stream has multiple parts. This is used to split a stream where multiple games were played.", | |||
"type": "number" | |||
} | |||
}, | |||
"description": "An entry in the stream index.", | "description": "An entry in the stream index.", | ||
"format": "inline" | "format": "inline" | ||
} | } | ||
</templatedata></noinclude> | </templatedata></noinclude> |
Revision as of 22:03, 14 February 2025
An entry in the stream index.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Stream Number | index | The number of the stream, relative to streams Joe has ever done. | Number | required |
Date | date | The date the stream started airing. Give this in ISO 8601 format (YYYY-MM-DD). | Date | required |
Game Name | game | The name of the game played in the stream. | String | required |
Game Stream Index | game_index | The number of the stream of this particular game, if it is part of a series of streams. | Number | optional |
VoD Links | vods | A list of links to VoDs for the stream. Should be an hlist of any variants (e.g: with chat, without chat) if they exist. | Content | optional |
Part | part | Which part of the stream this entry is for, a number starting at 1, if the stream has multiple parts. This is used to split a stream where multiple games were played. | Number | optional |