{"id":137898,"date":"2026-06-08T06:43:39","date_gmt":"2026-06-08T03:43:39","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/"},"modified":"2026-06-08T06:43:39","modified_gmt":"2026-06-08T03:43:39","slug":"sgl","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/","title":{"rendered":"SGL (Super GUI Lib)"},"content":{"rendered":"<p># SuperGUILib V2 &#8211; Enhanced Minecraft GUI Library<\/p>\n<p>A modern, easy-to-use GUI library for Minecraft 1.21.11 (Fabric) that makes creating beautiful user interfaces simple and fun!<\/p>\n<p>## \ud83c\udfae What is SuperGUILib?<\/p>\n<p>SuperGUILib is a powerful toolkit that helps Minecraft mod developers create stunning graphical user interfaces without dealing with complex rendering code. Think of it as a &#8220;GUI builder&#8221; that lets you create menus, settings screens, and interactive displays with just a few lines of code!<\/p>\n<p>**Perfect for:**<br \/>\n&#8211; Settings menus<br \/>\n&#8211; Custom inventories<br \/>\n&#8211; Interactive displays<br \/>\n&#8211; Configuration screens<br \/>\n&#8211; In-game tools and utilities<\/p>\n<p>## \u2728 Key Features<\/p>\n<p>&#8211; \ud83c\udfa8 **Beautiful Pre-styled Components** &#8211; Buttons, sliders, text fields, and more<br \/>\n&#8211; \ud83d\uddb1\ufe0f **Interactive Elements** &#8211; Click sounds, hover effects, cooldowns<br \/>\n&#8211; \ud83d\udcdc **Auto-scrolling** &#8211; Automatically handles content overflow<br \/>\n&#8211; \ud83c\udfaf **Item Display** &#8211; Show Minecraft items with tooltips<br \/>\n&#8211; \ud83c\udfb5 **Custom Sounds** &#8211; Add audio feedback to your UI<br \/>\n&#8211; \ud83d\udcf1 **Responsive Design** &#8211; Adapts to different screen sizes<br \/>\n&#8211; \ud83d\ude80 **Easy to Use** &#8211; Simple builder pattern API<\/p>\n<p>## \ud83d\ude80 Quick Start<\/p>\n<p>### Try It In-Game<\/p>\n<p>Run these commands to see examples:<br \/>\n&#8220;`<br \/>\n\/sgl-v2 testgui          &#8211; Enhanced examples menu with all features<br \/>\n\/sgl testgui             &#8211; Original examples menu<br \/>\n&#8220;`<\/p>\n<p>### Create Your First GUI<\/p>\n<p>&#8220;`java<br \/>\nimport org.stepan1411.super_gui_lib.client.api.GuiBuilder;<br \/>\nimport net.minecraft.client.gui.screen.Screen;<\/p>\n<p>public class MyFirstGUI {<br \/>\n    public static Screen create() {<br \/>\n        return GuiBuilder.create(&#8220;My Settings&#8221;)<br \/>\n            .panelSize(300, 200)<\/p>\n<p>            .label(&#8220;Welcome to My Mod!&#8221;)<br \/>\n                .color(0xFFFFFF00)<br \/>\n                .add()<\/p>\n<p>            .button(&#8220;Click Me&#8221;)<br \/>\n                .onPress(() -> System.out.println(&#8220;Hello!&#8221;))<br \/>\n                .add()<\/p>\n<p>            .slider(&#8220;Volume&#8221;)<br \/>\n                .value(0.7)<br \/>\n                .onChange(value -> setVolume(value))<br \/>\n                .add()<\/p>\n<p>            .build();<br \/>\n    }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>That&#8217;s it! You just created a GUI with a label, button, and slider in under 20 lines of code!<\/p>\n<p>## \ud83d\udcda Code Examples<\/p>\n<p>### Example 1: Simple Settings Menu<\/p>\n<p>&#8220;`java<br \/>\nScreen settingsGui = GuiBuilder.create(&#8220;Game Settings&#8221;)<br \/>\n    .panelSize(350, 250)<\/p>\n<p>    .slider(&#8220;Master Volume&#8221;)<br \/>\n        .value(0.8)<br \/>\n        .fillColor(0xFF00FF00)<br \/>\n        .onChange(vol -> game.setVolume(vol))<br \/>\n        .add()<\/p>\n<p>    .slider(&#8220;Brightness&#8221;)<br \/>\n        .value(0.5)<br \/>\n        .fillColor(0xFFFFAA00)<br \/>\n        .onChange(bright -> game.setBrightness(bright))<br \/>\n        .add()<\/p>\n<p>    .button(&#8220;Apply&#8221;)<br \/>\n        .surface(Surface.DARK_PANEL)<br \/>\n        .onPress(() -> saveSettings())<br \/>\n        .add()<\/p>\n<p>    .button(&#8220;Cancel&#8221;)<br \/>\n        .onPress(() -> closeScreen())<br \/>\n        .add()<\/p>\n<p>    .build();<br \/>\n&#8220;`<\/p>\n<p>### Example 2: Interactive Button with Cooldown<\/p>\n<p>&#8220;`java<br \/>\nGuiBuilder.create(&#8220;Combat Menu&#8221;)<br \/>\n    .panelSize(300, 200)<\/p>\n<p>    .button(&#8220;Quick Attack&#8221;)<br \/>\n        .cooldownSeconds(1.0)  \/\/ 1 second cooldown<br \/>\n        .onPress(() -> player.attack())<br \/>\n        .add()<\/p>\n<p>    .button(&#8220;Heavy Attack&#8221;)<br \/>\n        .cooldownSeconds(3.0)  \/\/ 3 second cooldown<br \/>\n        .surface(Surface.flat(0xFF660000))<br \/>\n        .onPress(() -> player.heavyAttack())<br \/>\n        .add()<\/p>\n<p>    .build();<br \/>\n&#8220;`<\/p>\n<p>### Example 3: Text Input Form<\/p>\n<p>&#8220;`java<br \/>\nGuiBuilder.create(&#8220;Player Registration&#8221;)<br \/>\n    .panelSize(350, 250)<\/p>\n<p>    .label(&#8220;Enter your name:&#8221;).add()<\/p>\n<p>    .textField()<br \/>\n        .placeholder(&#8220;Name&#8230;&#8221;)<br \/>\n        .textOnly()           \/\/ Only letters allowed<br \/>\n        .maxLength(20)<br \/>\n        .onChange(name -> playerName = name)<br \/>\n        .add()<\/p>\n<p>    .label(&#8220;Enter your age:&#8221;).add()<\/p>\n<p>    .textField()<br \/>\n        .placeholder(&#8220;Age&#8230;&#8221;)<br \/>\n        .numbersOnly()        \/\/ Only numbers allowed<br \/>\n        .maxLength(3)<br \/>\n        .onChange(age -> playerAge = age)<br \/>\n        .add()<\/p>\n<p>    .button(&#8220;Submit&#8221;)<br \/>\n        .onPress(() -> registerPlayer())<br \/>\n        .add()<\/p>\n<p>    .build();<br \/>\n&#8220;`<\/p>\n<p>### Example 4: Custom Styled Menu<\/p>\n<p>&#8220;`java<br \/>\nGuiBuilder.create(&#8220;Styled Menu&#8221;)<br \/>\n    .panelSize(400, 300)<br \/>\n    .panelSurface(Surface.flat(0xE0101010).and(Surface.outline(0xFF00AAFF)))<\/p>\n<p>    .label(&#8220;Super Cool Menu&#8221;)<br \/>\n        .color(0xFF00FFFF)<br \/>\n        .scale(2.0f)<br \/>\n        .shadow(true)<br \/>\n        .add()<\/p>\n<p>    .button(&#8220;Neon Button&#8221;)<br \/>\n        .size(250, 25)<br \/>\n        .surface(Surface.flat(0xFF003366).and(Surface.outline(0xFF00FF00)))<br \/>\n        .onPress(() -> doSomething())<br \/>\n        .add()<\/p>\n<p>    .build();<br \/>\n&#8220;`<\/p>\n<p>## \ud83c\udfa8 Available Components<\/p>\n<p>| Component | Description | Use Case |<br \/>\n|&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;-|<br \/>\n| **Button** | Clickable button with cooldown support | Actions, navigation |<br \/>\n| **Slider** | Horizontal\/vertical value selector | Volume, brightness, settings |<br \/>\n| **Label** | Text display with styling | Titles, descriptions |<br \/>\n| **TextField** | Text input with validation | User input, search |<br \/>\n| **ItemDisplay** | Show Minecraft items with tooltips | Inventories, showcases |<br \/>\n| **VolumeMeter** | VU-meter style indicator | Audio levels, progress |<br \/>\n| **ScrollContainer** | Auto-scrolling container | Long content lists |<\/p>\n<p>## \ud83c\udfaf Component Features<\/p>\n<p>### Buttons<br \/>\n&#8211; Custom colors and surfaces<br \/>\n&#8211; Click sounds<br \/>\n&#8211; Cooldown system<br \/>\n&#8211; Hover effects<br \/>\n&#8211; Dynamic text updates<\/p>\n<p>### Sliders<br \/>\n&#8211; Horizontal and vertical<br \/>\n&#8211; Custom colors (track, fill, handle)<br \/>\n&#8211; Value labels<br \/>\n&#8211; Real-time callbacks<br \/>\n&#8211; Smooth dragging<\/p>\n<p>### Text Fields<br \/>\n&#8211; Placeholder text<br \/>\n&#8211; Text-only or numbers-only validation<br \/>\n&#8211; Max length limits<br \/>\n&#8211; Custom colors<br \/>\n&#8211; Border styling<\/p>\n<p>### Item Display<br \/>\n&#8211; Show any Minecraft item<br \/>\n&#8211; Automatic tooltips<br \/>\n&#8211; Scalable size<br \/>\n&#8211; Custom backgrounds<br \/>\n&#8211; Dynamic updates<\/p>\n<p>## \ud83d\udce6 Installation<\/p>\n<p>### For Mod Developers<\/p>\n<p>1. Download `SuperGUILib-*.jar`<br \/>\n2. Add to your project&#8217;s `libs` folder<br \/>\n3. Update `build.gradle`:<\/p>\n<p>&#8220;`gradle<br \/>\ndependencies {<br \/>\n    modImplementation files(&#8216;libs\/SuperGUILib-*.jar&#8217;)<br \/>\n    include files(&#8216;libs\/SuperGUILib-*.jar&#8217;)<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Building from Source<\/p>\n<p>&#8220;`bash<br \/>\n.\/gradlew build<br \/>\n&#8220;`<\/p>\n<p>The compiled JAR will be in `build\/libs\/`<\/p>\n<p>## \ud83d\udcd6 Documentation<\/p>\n<p>Full documentation available SGL-WIKI:<br \/>\n&#8211; [Home](SGL-WIKI\/Home.md) &#8211; Overview and introduction<br \/>\n&#8211; [Quick Start](SGL-WIKI\/Quick-Start.md) &#8211; Get started in 5 minutes<br \/>\n&#8211; [Components Guide](SGL-WIKI\/Components.md) &#8211; All components explained<br \/>\n&#8211; [Examples](SGL-WIKI\/Examples.md) &#8211; Real-world code examples<br \/>\n&#8211; [Advanced Features](SGL-WIKI\/Advanced-Features.md) &#8211; Scrolling, cooldowns, styling<\/p>\n<p>## \ud83c\udfae In-Game Commands<\/p>\n<p>Test all features with these commands:<\/p>\n<p>&#8220;`<br \/>\n\/sgl-v2 testgui              &#8211; Enhanced V2 menu (recommended!)<br \/>\n\/sgl testgui                 &#8211; Original examples menu<br \/>\n&#8220;`<\/p>\n<p>## \ud83c\udf08 Color Format<\/p>\n<p>SuperGUILib uses ARGB (Alpha-Red-Green-Blue) format:<\/p>\n<p>&#8220;`<br \/>\n0xAARRGGBB<br \/>\n  \u2502\u2502\u2502\u2502\u2502\u2502\u2514\u2514\u2500 Blue (00-FF)<br \/>\n  \u2502\u2502\u2502\u2502\u2514\u2514\u2500\u2500\u2500 Green (00-FF)<br \/>\n  \u2502\u2502\u2514\u2514\u2500\u2500\u2500\u2500\u2500 Red (00-FF)<br \/>\n  \u2514\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500 Alpha (00=transparent, FF=opaque)<br \/>\n&#8220;`<\/p>\n<p>**Examples:**<br \/>\n&#8211; `0xFFFF0000` &#8211; Opaque red<br \/>\n&#8211; `0x80FF0000` &#8211; Semi-transparent red<br \/>\n&#8211; `0xFF00FF00` &#8211; Opaque green<br \/>\n&#8211; `0x800033FF` &#8211; Semi-transparent blue<\/p>\n<p>&#8212;<\/p>\n<p>**Need help?** Check the Wiki<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Super GUI Lib &#8211; A library for creating beautiful GUIs without assets.<\/p>\n","protected":false},"featured_media":137899,"template":"","meta":{"_minecraft_slug":"sgl","_minecraft_project_id":"L1dy58eG","_minecraft_author":"Stepan1411_Studio","_minecraft_license":"LicenseRef-All-Rights-Reserved","_minecraft_downloads":97,"_minecraft_follows":1,"_minecraft_client_side":"required","_minecraft_server_side":"unsupported","_minecraft_storage_type":"zip","_minecraft_archive_name":"sgl.zip","_minecraft_size_bytes":675372,"_minecraft_version_count":3,"_minecraft_updated_at":"2026-05-16T17:34:39.021618Z","_minecraft_date_created":"2026-04-20T02:56:09.956849Z","_minecraft_date_modified":"2026-05-13T10:36:17.009070Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/sgl","_minecraft_icon_attachment_id":137899,"_minecraft_imported_at":"2026-06-08T03:43:40+00:00","_minecraft_import_hash":"104d00f7722ec9ee39982ce6d0572685","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,873,92],"mod_loader":[99],"minecraft_version":[41],"class_list":["post-137898","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-library","mod_category-utility","mod_loader-fabric","minecraft_version-1-21-11"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SGL (Super GUI Lib) - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SGL (Super GUI Lib) - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Super GUI Lib - A library for creating beautiful GUIs without assets.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sgl\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sgl\\\/\",\"name\":\"SGL (Super GUI Lib) - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sgl\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sgl\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/sgl-icon-5e56bed7893f86f0f6f48b6524a1bbed0917ff48_96.webp\",\"datePublished\":\"2026-06-08T03:43:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sgl\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sgl\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sgl\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/sgl-icon-5e56bed7893f86f0f6f48b6524a1bbed0917ff48_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/sgl-icon-5e56bed7893f86f0f6f48b6524a1bbed0917ff48_96.webp\",\"width\":95,\"height\":82},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/sgl\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SGL (Super GUI Lib)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SGL (Super GUI Lib) - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/","og_locale":"en_US","og_type":"article","og_title":"SGL (Super GUI Lib) - Minecraft","og_description":"Super GUI Lib - A library for creating beautiful GUIs without assets.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/","name":"SGL (Super GUI Lib) - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/sgl-icon-5e56bed7893f86f0f6f48b6524a1bbed0917ff48_96.webp","datePublished":"2026-06-08T03:43:39+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/sgl\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/sgl-icon-5e56bed7893f86f0f6f48b6524a1bbed0917ff48_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/sgl-icon-5e56bed7893f86f0f6f48b6524a1bbed0917ff48_96.webp","width":95,"height":82},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/sgl\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"SGL (Super GUI Lib)"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/137898","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/137899"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=137898"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=137898"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=137898"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=137898"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}