Module:Data/endpoints

From Yugipedia
< Module:Data
Revision as of 13:32, 29 December 2019 by Becasita (talk | contribs) (Add release endpoint.)
Jump to: navigation, search
-- <pre>
return {
	-- Static data:
	getRegion   = 'static/region',
	getLanguage = 'static/language',
	getMedium   = 'static/medium', -- TODO: Rename. "medium" could be CG, anime, manga, VG, etc..
	getRarity   = 'static/rarity',
	getEdition  = 'static/edition',
	getRelease  = 'static/release',

	-- SMW data:
	getName         = 'smw/name',
	getReleaseDate  = 'smw/releaseDate',
	getFullCardType = 'smw/cardType', -- TODO: move module?
	
	-- Sub-Namespaces:
	anime = 'namespaces/anime',
	manga = 'namespaces/manga',
}
-- </pre>