{"id":1937,"date":"2010-10-15T00:11:19","date_gmt":"2010-10-14T18:41:19","guid":{"rendered":"https:\/\/2thenew.today\/blog\/?p=1937"},"modified":"2010-10-15T00:14:28","modified_gmt":"2010-10-14T18:44:28","slug":"gorm-feature-bypass-grails-domain-constraints","status":"publish","type":"post","link":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/","title":{"rendered":"GORM feature: Bypass Grails Domain Constraints"},"content":{"rendered":"<p>I didn&#8217;t know this earlier, but found a very good feature of GORM &#8211; &#8216;bypass&#8217; constraints or &#8216;customize&#8217; validation while saving a domain-object. I am not sure if there&#8217;s any name for this feature. But I am naming it as &#8216;bypass constraints&#8217;.<\/p>\n<p>[groovy]<br \/>\nif(domainObject.validate([&#8216;field1&#8217;, &#8216;field2&#8217;])){<br \/>\n  domainObject.save(validate:false, flush:true)<br \/>\n}<br \/>\n[\/groovy]<\/p>\n<p>Let&#8217;s discuss it with a use case. We create a user table with fields &#8211; id, name, email, password.<br \/>\nAnd email\/password are mandatory fields. <\/p>\n<p>[groovy]<br \/>\nClass User{<br \/>\n    Long id<br \/>\n    String name<br \/>\n    String email<br \/>\n    String password<\/p>\n<p>    static constraints = {<br \/>\n        name(nullable: true)<br \/>\n    }<br \/>\n}<br \/>\n[\/groovy]<\/p>\n<p>Now there&#8217;s a requirement in the application &#8211; An existing user can <strong>invite a friend<\/strong>.<br \/>\n<\/p>\n<p>With the help of &#8216;bypass constraints&#8217; feature, it&#8217;s easier to handle this use-case without actually creating any separate domain to store invited users information. <br \/>\nFollowing code will create User entry with null password.<br \/>\n[groovy]<br \/>\nUser user = new User(name:userName, email:userEmail)<br \/>\nif(user.validate([&#8217;email&#8217;]) &amp;&amp; user.save(validate:false, flush:true)){<br \/>\nreturn true<br \/>\n}<br \/>\n[\/groovy]<br \/>\n<\/p>\n<p><strong>NOTE<\/strong>: To achieve this, you just need to set &#8216;password&#8217; column as nullable true in your &#8216;user&#8217; table.<br \/>\n<\/p>\n<p>Above example\/use-case is just to explain &#8216;bypass constraints&#8217; feature, nothing more than this. \ud83d\ude42<br \/>\n<\/p>\n<p>I hope it might help you somewhere.<br \/>\n<\/p>\n<p>Salil Kalia<br \/>\nsalil [at] intelligrape.com<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I didn&#8217;t know this earlier, but found a very good feature of GORM &#8211; &#8216;bypass&#8217; constraints or &#8216;customize&#8217; validation while saving a domain-object. I am not sure if there&#8217;s any name for this feature. But I am naming it as &#8216;bypass constraints&#8217;. [groovy] if(domainObject.validate([&#8216;field1&#8217;, &#8216;field2&#8217;])){ domainObject.save(validate:false, flush:true) } [\/groovy] Let&#8217;s discuss it with a use [&hellip;]<\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":6,"footnotes":""},"categories":[7],"tags":[],"class_list":["post-1937","post","type-post","status-publish","format-standard","hentry","category-grails"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"I didn&#039;t know this earlier, but found a very good feature of GORM - &#039;bypass&#039; constraints or &#039;customize&#039; validation while saving a domain-object. I am not sure if there&#039;s any name for this feature. But I am naming it as &#039;bypass constraints&#039;. [groovy] if(domainObject.validate([&#039;field1&#039;, &#039;field2&#039;])){ domainObject.save(validate:false, flush:true) } [\/groovy] Let&#039;s discuss it with a use\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Salil\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/\" \/>\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=\"GORM feature: Bypass Grails Domain Constraints | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"I didn&#039;t know this earlier, but found a very good feature of GORM - &#039;bypass&#039; constraints or &#039;customize&#039; validation while saving a domain-object. I am not sure if there&#039;s any name for this feature. But I am naming it as &#039;bypass constraints&#039;. [groovy] if(domainObject.validate([&#039;field1&#039;, &#039;field2&#039;])){ domainObject.save(validate:false, flush:true) } [\/groovy] Let&#039;s discuss it with a use\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.today\/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=\"GORM feature: Bypass Grails Domain Constraints | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I didn&#039;t know this earlier, but found a very good feature of GORM - &#039;bypass&#039; constraints or &#039;customize&#039; validation while saving a domain-object. I am not sure if there&#039;s any name for this feature. But I am naming it as &#039;bypass constraints&#039;. [groovy] if(domainObject.validate([&#039;field1&#039;, &#039;field2&#039;])){ domainObject.save(validate:false, flush:true) } [\/groovy] Let&#039;s discuss it with a use\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.today\/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\\\/gorm-feature-bypass-grails-domain-constraints\\\/#article\",\"name\":\"GORM feature: Bypass Grails Domain Constraints | TO THE NEW Blog\",\"headline\":\"GORM feature: Bypass Grails Domain Constraints\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2010-10-15T00:11:19+05:30\",\"dateModified\":\"2010-10-15T00:14:28+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":3,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/gorm-feature-bypass-grails-domain-constraints\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/gorm-feature-bypass-grails-domain-constraints\\\/#webpage\"},\"articleSection\":\"Grails\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/gorm-feature-bypass-grails-domain-constraints\\\/#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\\\/grails\\\/#listItem\",\"name\":\"Grails\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"position\":2,\"name\":\"Grails\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/gorm-feature-bypass-grails-domain-constraints\\\/#listItem\",\"name\":\"GORM feature: Bypass Grails Domain Constraints\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/gorm-feature-bypass-grails-domain-constraints\\\/#listItem\",\"position\":3,\"name\":\"GORM feature: Bypass Grails Domain Constraints\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}}]},{\"@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\\\/salil\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/\",\"name\":\"Salil\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/gorm-feature-bypass-grails-domain-constraints\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/97e216cba95b296d5909ad7b93d1c338d0fdad7b95410c9412b126a90f4735d9?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Salil\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/gorm-feature-bypass-grails-domain-constraints\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/gorm-feature-bypass-grails-domain-constraints\\\/\",\"name\":\"GORM feature: Bypass Grails Domain Constraints | TO THE NEW Blog\",\"description\":\"I didn't know this earlier, but found a very good feature of GORM - 'bypass' constraints or 'customize' validation while saving a domain-object. I am not sure if there's any name for this feature. But I am naming it as 'bypass constraints'. [groovy] if(domainObject.validate(['field1', 'field2'])){ domainObject.save(validate:false, flush:true) } [\\\/groovy] Let's discuss it with a use\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/gorm-feature-bypass-grails-domain-constraints\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\"},\"datePublished\":\"2010-10-15T00:11:19+05:30\",\"dateModified\":\"2010-10-15T00:14:28+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":"GORM feature: Bypass Grails Domain Constraints | TO THE NEW Blog","description":"I didn't know this earlier, but found a very good feature of GORM - 'bypass' constraints or 'customize' validation while saving a domain-object. I am not sure if there's any name for this feature. But I am naming it as 'bypass constraints'. [groovy] if(domainObject.validate(['field1', 'field2'])){ domainObject.save(validate:false, flush:true) } [\/groovy] Let's discuss it with a use","canonical_url":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/#article","name":"GORM feature: Bypass Grails Domain Constraints | TO THE NEW Blog","headline":"GORM feature: Bypass Grails Domain Constraints","author":{"@id":"https:\/\/2thenew.today\/blog\/author\/salil\/#author"},"publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"},"datePublished":"2010-10-15T00:11:19+05:30","dateModified":"2010-10-15T00:14:28+05:30","inLanguage":"en-US","commentCount":3,"mainEntityOfPage":{"@id":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/#webpage"},"articleSection":"Grails"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.today\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/grails\/#listItem","name":"Grails"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/grails\/#listItem","position":2,"name":"Grails","item":"https:\/\/2thenew.today\/blog\/category\/grails\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/#listItem","name":"GORM feature: Bypass Grails Domain Constraints"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/#listItem","position":3,"name":"GORM feature: Bypass Grails Domain Constraints","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/grails\/#listItem","name":"Grails"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.today\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.today\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.today\/blog\/author\/salil\/#author","url":"https:\/\/2thenew.today\/blog\/author\/salil\/","name":"Salil","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/97e216cba95b296d5909ad7b93d1c338d0fdad7b95410c9412b126a90f4735d9?s=96&d=mm&r=g","width":96,"height":96,"caption":"Salil"}},{"@type":"WebPage","@id":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/#webpage","url":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/","name":"GORM feature: Bypass Grails Domain Constraints | TO THE NEW Blog","description":"I didn't know this earlier, but found a very good feature of GORM - 'bypass' constraints or 'customize' validation while saving a domain-object. I am not sure if there's any name for this feature. But I am naming it as 'bypass constraints'. [groovy] if(domainObject.validate(['field1', 'field2'])){ domainObject.save(validate:false, flush:true) } [\/groovy] Let's discuss it with a use","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.today\/blog\/author\/salil\/#author"},"creator":{"@id":"https:\/\/2thenew.today\/blog\/author\/salil\/#author"},"datePublished":"2010-10-15T00:11:19+05:30","dateModified":"2010-10-15T00:14:28+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.today\/blog\/#website","url":"https:\/\/2thenew.today\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"GORM feature: Bypass Grails Domain Constraints | TO THE NEW Blog","og:description":"I didn't know this earlier, but found a very good feature of GORM - 'bypass' constraints or 'customize' validation while saving a domain-object. I am not sure if there's any name for this feature. But I am naming it as 'bypass constraints'. [groovy] if(domainObject.validate(['field1', 'field2'])){ domainObject.save(validate:false, flush:true) } [\/groovy] Let's discuss it with a use","og:url":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/","og:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"GORM feature: Bypass Grails Domain Constraints | TO THE NEW Blog","twitter:description":"I didn't know this earlier, but found a very good feature of GORM - 'bypass' constraints or 'customize' validation while saving a domain-object. I am not sure if there's any name for this feature. But I am naming it as 'bypass constraints'. [groovy] if(domainObject.validate(['field1', 'field2'])){ domainObject.save(validate:false, flush:true) } [\/groovy] Let's discuss it with a use","twitter:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"1937","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","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":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","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:26:26","updated":"2024-02-29 09:26:53","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:\/\/2thenew.today\/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:\/\/2thenew.today\/blog\/category\/grails\/\" title=\"Grails\">Grails<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tGORM feature: Bypass Grails Domain Constraints\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.today\/blog"},{"label":"Grails","link":"https:\/\/2thenew.today\/blog\/category\/grails\/"},{"label":"GORM feature: Bypass Grails Domain Constraints","link":"https:\/\/2thenew.today\/blog\/gorm-feature-bypass-grails-domain-constraints\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/1937","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/comments?post=1937"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/1937\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/media?parent=1937"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/categories?post=1937"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/tags?post=1937"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}