OBJECT
ExtensionDiscoveryManifest
Extension metadata used for discovery.
link GraphQL Schema definition
1 type ExtensionDiscoveryManifest { 2 3 # Name of the extension author. 4 : String! 5 6 # Extension categories. 7 : [ExtensionCategory!]! 8 9 # Games that an extension is content-matched to. This list is managed internally 10 # by Twitch. 11 : [Game!] 12 13 # Extension descriprion. 1024 character limit. 14 : String! 15 16 # Games that an extension is associated to. This list is managed by the extension 17 # developer. 18 : [Game!]! 19 20 # Icon urls for extensions. 21 : ExtensionIcons 22 23 # name of the extension. 24 : String! 25 26 # Url to an extensions privacy policy. 27 : String! 28 29 # Extension screenshot urls. 30 : [String!]! 31 32 # Extension summary. 140 character limit. 33 : String! 34 35 # Extension developers support email. 36 : String! 37 38 # Extension eula/tos url. 39 : String! 40 41 # Extension viewer summary. 42 : String! 43 44 }