{"id":18747,"date":"2015-03-30T16:48:21","date_gmt":"2015-03-30T11:18:21","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=18747"},"modified":"2017-04-25T09:55:39","modified_gmt":"2017-04-25T04:25:39","slug":"custom-ids-in-firebase","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/","title":{"rendered":"Custom IDs In Firebase"},"content":{"rendered":"<p>Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data.<\/p>\n<p>Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes it&#8217;s hard to maintain or traverse the data on the basis of these randomly generated IDs, because the only way to access data in Firebase is via URL reference (refObject\/books\/\/title) for the particular node. So sometimes we need to store data object with our own custom keys.<\/p>\n<p>[code language=&#8221;javascript&#8221;]var onComplete = function(error) {<br \/>\n    if (error) {<br \/>\n        console.log(&#8216;Operation failed&#8217;);<br \/>\n    } else {<br \/>\n        console.log(&#8216; Operation completed&#8217;);<br \/>\n    }<br \/>\n};[\/code]<\/p>\n<p>We can save data into firebase using push() method.<\/p>\n<p>[code language=&#8221;javascript&#8221;]var booksRef = ref.child(&quot;books&quot;);<\/p>\n<p>booksRef.push({<br \/>\n    author: &quot; Adam Freeman&quot;,<br \/>\n    title: &quot;Pro AngularJS&quot;<br \/>\n}, onComplete);<\/p>\n<p>booksRef.push({<br \/>\n    author: &quot;Niall OHiggins&quot;,<br \/>\n    title: &quot;MongoDB and Python&quot;<br \/>\n}, onComplete);[\/code]<\/p>\n<p>The above code saves two objects into my data store and if the operation is successful, an auto-generated ID by Firebase is set as key for respective data objects.<br \/>\nNow, the data store in Firebase will look like:<\/p>\n<p>[code language=&#8221;javascript&#8221;]{<br \/>\n    &quot;books&quot; : {<br \/>\n    \t\t&quot;-Jldh2kvv9KyrkBuTTjV&quot; : {<br \/>\n        \t\t&quot;author&quot; : &quot; Adam Freeman&quot;,<br \/>\n           \t\t&quot;title&quot; : &quot;Pro AngularJS&quot;<br \/>\n    \t\t},<br \/>\n   \t\t &quot;-Jldh2kx0AgFXU1-Umnx&quot; : {<br \/>\n       \t\t&quot;author&quot; : &quot;Niall OHiggins&quot;,<br \/>\n           \t\t&quot;title&quot; : &quot;MongoDB and Python&quot;<br \/>\n    \t\t}<br \/>\n\t}<br \/>\n}[\/code]<\/p>\n<p>Sometimes, we need to store data with custom IDs. Such as Email-ID, UserName etc.<br \/>\nWe can use set() method to save our data in Firebase.<\/p>\n<p>[code language=&#8221;javascript&#8221;] var booksRef = ref.child(&quot;books&quot;);<br \/>\n booksRef.child(&#8216;Adam Freeman&#8217;).set({<br \/>\n     title: &quot;Pro AngularJS&quot;<br \/>\n }, onComplete);<\/p>\n<p> booksRef.child(&#8216;Niall OHiggins&#8217;).set({<br \/>\n     title: &quot;MongoDB and Python&quot;<br \/>\n }, onComplete);[\/code]<\/p>\n<p>Now, the data store in Firebase will look like :<\/p>\n<p>[code language=&#8221;javascript&#8221;]{<br \/>\n    &quot;books&quot; : {<br \/>\n    \t\t&quot;Adam Freeman&quot; : {<br \/>\n       \t\t &quot;title&quot; : &quot;Pro AngularJS&quot;<br \/>\n    \t\t},<br \/>\n    \t\t&quot;Niall OHiggins&quot; : {<br \/>\n      \t\t  &quot;title&quot; : &quot;MongoDB and Python&quot;<br \/>\n  \t  \t}<br \/>\n\t}<br \/>\n}[\/code]<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data. Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes [&hellip;]<\/p>\n","protected":false},"author":149,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":30,"footnotes":""},"categories":[1185],"tags":[1736],"class_list":["post-18747","post","type-post","status-publish","format-standard","hentry","category-node-js-2","tag-firebase"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data. Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Mohit Tyagi\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Custom IDs In Firebase | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data. Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Custom IDs In Firebase | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data. Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/#article\",\"name\":\"Custom IDs In Firebase | TO THE NEW Blog\",\"headline\":\"Custom IDs In Firebase\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mohit-tyagi\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-03-30T16:48:21+05:30\",\"dateModified\":\"2017-04-25T09:55:39+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/#webpage\"},\"articleSection\":\"Node.js, firebase\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/node-js-2\\\/#listItem\",\"name\":\"Node.js\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/node-js-2\\\/#listItem\",\"position\":2,\"name\":\"Node.js\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/node-js-2\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/#listItem\",\"name\":\"Custom IDs In Firebase\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/#listItem\",\"position\":3,\"name\":\"Custom IDs In Firebase\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/node-js-2\\\/#listItem\",\"name\":\"Node.js\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mohit-tyagi\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mohit-tyagi\\\/\",\"name\":\"Mohit Tyagi\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fe8ac46f2ea97ddfd745b7dec1382497956728370a80f84c149bf22d9da6f19f?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Mohit Tyagi\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/\",\"name\":\"Custom IDs In Firebase | TO THE NEW Blog\",\"description\":\"Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data. Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/custom-ids-in-firebase\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mohit-tyagi\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/mohit-tyagi\\\/#author\"},\"datePublished\":\"2015-03-30T16:48:21+05:30\",\"dateModified\":\"2017-04-25T09:55:39+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Custom IDs In Firebase | TO THE NEW Blog","description":"Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data. Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes","canonical_url":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/#article","name":"Custom IDs In Firebase | TO THE NEW Blog","headline":"Custom IDs In Firebase","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/mohit-tyagi\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"datePublished":"2015-03-30T16:48:21+05:30","dateModified":"2017-04-25T09:55:39+05:30","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/#webpage"},"articleSection":"Node.js, firebase"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/node-js-2\/#listItem","name":"Node.js"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/node-js-2\/#listItem","position":2,"name":"Node.js","item":"https:\/\/tothenewco.pro\/blog\/category\/node-js-2\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/#listItem","name":"Custom IDs In Firebase"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/#listItem","position":3,"name":"Custom IDs In Firebase","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/node-js-2\/#listItem","name":"Node.js"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/mohit-tyagi\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/mohit-tyagi\/","name":"Mohit Tyagi","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/fe8ac46f2ea97ddfd745b7dec1382497956728370a80f84c149bf22d9da6f19f?s=96&d=mm&r=g","width":96,"height":96,"caption":"Mohit Tyagi"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/","name":"Custom IDs In Firebase | TO THE NEW Blog","description":"Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data. Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/mohit-tyagi\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/mohit-tyagi\/#author"},"datePublished":"2015-03-30T16:48:21+05:30","dateModified":"2017-04-25T09:55:39+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Custom IDs In Firebase | TO THE NEW Blog","og:description":"Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data. Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes","og:url":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Custom IDs In Firebase | TO THE NEW Blog","twitter:description":"Firebase is a service that allows us to create real-time apps without having a native back-end(server). Storing and retrieving of data in real-time is done directly from the browser(front-end), i.e. no back-end services is required to fetch the data. Whenever we save data in Firebase, it generates a unique identification ID for each object. Sometimes","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"18747","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 15:27:52","updated":"2024-02-29 08:21:28","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/tothenewco.pro\/blog\/category\/node-js-2\/\" title=\"Node.js\">Node.js<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tCustom IDs In Firebase\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Node.js","link":"https:\/\/tothenewco.pro\/blog\/category\/node-js-2\/"},{"label":"Custom IDs In Firebase","link":"https:\/\/tothenewco.pro\/blog\/custom-ids-in-firebase\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/18747","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/149"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=18747"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/18747\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=18747"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=18747"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=18747"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}