{"id":20454,"date":"2025-11-04T11:14:16","date_gmt":"2025-11-04T05:44:16","guid":{"rendered":"https:\/\/vinish.dev\/?p=20454"},"modified":"2025-11-07T16:29:33","modified_gmt":"2025-11-07T10:59:33","slug":"oracle-rtrim-function","status":"publish","type":"post","link":"https:\/\/vinish.dev\/oracle-rtrim-function","title":{"rendered":"Oracle RTRIM Function: A Simple Guide"},"content":{"rendered":"\n<p>The <code>RTRIM<\/code> function in <a href=\"https:\/\/vinish.dev\/oracle-database-23ai\">Oracle<\/a> is a powerful tool for cleaning data. It \"Right Trims\" a string, meaning it removes all specified characters from the <em>end<\/em> (or right side) of the string.<\/p>\n\n\n\n<p>This is the opposite of <code>LTRIM<\/code>, which removes characters from the left. <code>RTRIM<\/code> is most commonly used to clean up trailing spaces or other unwanted characters from data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is the RTRIM Function in Oracle?<\/h2>\n\n\n\n<p><code>RTRIM<\/code> (Right-Trim) scans a string from right to left and removes any characters that match a specified set. It stops removing characters as soon as it finds one that is <em>not<\/em> in the set.<\/p>\n\n\n\n<p>This is useful for:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Removing trailing spaces from user input (e.g., <code>'John Doe '<\/code>).<\/li>\n\n\n\n<li>Cleaning up data that has trailing punctuation (e.g., <code>'SKU-123,'<\/code>).<\/li>\n\n\n\n<li>Standardizing data by removing unwanted trailing characters.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">RTRIM Function Syntax<\/h2>\n\n\n\n<p>The syntax for <code>RTRIM<\/code> is simple:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">RTRIM(char, [set])\n<\/pre>\n\n\n\n<p>Let's break that down:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><code>char<\/code><\/strong>: The original string or column you want to trim (e.g., <code>'Hello World '<\/code>).<\/li>\n\n\n\n<li><strong><code>[set]<\/code><\/strong> (Optional): The string of characters you want to remove.\n<ul class=\"wp-block-list\">\n<li>If you <strong>omit<\/strong> this, <code>RTRIM<\/code> defaults to removing a single space <code>' '<\/code>.<\/li>\n\n\n\n<li>The <em>order<\/em> of characters in the <code>set<\/code> doesn't matter. <code>RTRIM('abcxzy', 'xyz')<\/code> will return <code>'abc'<\/code>.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Oracle RTRIM Function Examples<\/h2>\n\n\n\n<p>Here are two practical examples of how to use <code>RTRIM<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example 1: Removing Trailing Spaces (Default) using RTRIM<\/h3>\n\n\n\n<p>This is the most common use for <code>RTRIM<\/code>. Imagine a user entered their name with extra spaces at the end.<\/p>\n\n\n\n<p><strong>Query:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT \n  '[' || RTRIM('John Smith    ') || ']' AS \"Trimmed Name\"\nFROM DUAL;\n<\/pre>\n\n\n\n<p><em>(We use brackets <code>[]<\/code> just to show that the spaces are truly gone.)<\/em><\/p>\n\n\n\n<p><strong>Result:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Trimmed Name\n--------------\n[John Smith]\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example 2: Removing a Specific Set of Characters with RTRIM<\/h3>\n\n\n\n<p>Let's say you have a list of part numbers that sometimes have trailing commas, periods, or dashes that you need to remove.<\/p>\n\n\n\n<p><strong>Query:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SELECT \n  RTRIM('PART-ABC-123,.-,', ',-.') AS \"Cleaned Part\"\nFROM DUAL;\n<\/pre>\n\n\n\n<p><em>Note: <code>RTRIM<\/code> will remove any combination of <code>,<\/code>, <code>-<\/code>, and <code>.<\/code> from the end until it hits a character not in that set (the <code>3<\/code>).<\/em><\/p>\n\n\n\n<p><strong>Result:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Cleaned Part\n------------\nPART-ABC-123\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>The RTRIM function in Oracle is a powerful tool for cleaning data. It \"Right Trims\" a string, meaning it removes all specified characters from the end (or right side) of the string. This is the opposite of LTRIM, which removes characters from the left. RTRIM is most commonly used to clean up trailing spaces or [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1807,1824],"tags":[1822],"class_list":["post-20454","post","type-post","status-publish","format-standard","hentry","category-oracle-sql","category-string-function","tag-ai-assisted"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Oracle RTRIM function &#8226; Vinish.Dev<\/title>\n<meta name=\"description\" content=\"Learn to use the Oracle RTRIM function to remove trailing characters. This simple SQL guide gives the syntax and examples to trim spaces.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vinish.dev\/oracle-rtrim-function\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle RTRIM function &#8226; Vinish.Dev\" \/>\n<meta property=\"og:description\" content=\"Learn to use the Oracle RTRIM function to remove trailing characters. This simple SQL guide gives the syntax and examples to trim spaces.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vinish.dev\/oracle-rtrim-function\" \/>\n<meta property=\"og:site_name\" content=\"Vinish.Dev\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/foxinfotech2014\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-04T05:44:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-07T10:59:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vinish.dev\/wp-content\/uploads\/2024\/09\/homepage-vinish.dev_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"693\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vinish Kapoor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/x.com\/vinish_kapoor\" \/>\n<meta name=\"twitter:site\" content=\"@foxinfotech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vinish Kapoor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-rtrim-function#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-rtrim-function\"},\"author\":{\"name\":\"Vinish Kapoor\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\"},\"headline\":\"Oracle RTRIM Function: A Simple Guide\",\"datePublished\":\"2025-11-04T05:44:16+00:00\",\"dateModified\":\"2025-11-07T10:59:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-rtrim-function\"},\"wordCount\":292,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"keywords\":[\"AI-Assisted\"],\"articleSection\":[\"Oracle SQL\",\"String Function\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-rtrim-function#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-rtrim-function\",\"url\":\"https:\\\/\\\/vinish.dev\\\/oracle-rtrim-function\",\"name\":\"Oracle RTRIM function &#8226; Vinish.Dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\"},\"datePublished\":\"2025-11-04T05:44:16+00:00\",\"dateModified\":\"2025-11-07T10:59:33+00:00\",\"description\":\"Learn to use the Oracle RTRIM function to remove trailing characters. This simple SQL guide gives the syntax and examples to trim spaces.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-rtrim-function#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-rtrim-function\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-rtrim-function#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vinish.dev\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle SQL\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/oracle-sql\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"String Function\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/oracle-sql\\\/string-function\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Oracle RTRIM Function: A Simple Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\",\"url\":\"https:\\\/\\\/vinish.dev\\\/\",\"name\":\"Vinish.Dev\",\"description\":\"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers\",\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vinish.dev\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"url\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"contentUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\",\"width\":192,\"height\":192,\"caption\":\"Vinish Kapoor\"},\"logo\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/vinishprofile.png\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.facebook.com\\\/foxinfotech2014\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/foxinfotech\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\",\"name\":\"Vinish Kapoor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g\",\"caption\":\"Vinish Kapoor\"},\"description\":\"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.\",\"sameAs\":[\"https:\\\/\\\/vinish.dev\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vinish-kapoor\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/x.com\\\/vinish_kapoor\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Oracle RTRIM function &#8226; Vinish.Dev","description":"Learn to use the Oracle RTRIM function to remove trailing characters. This simple SQL guide gives the syntax and examples to trim spaces.","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:\/\/vinish.dev\/oracle-rtrim-function","og_locale":"en_US","og_type":"article","og_title":"Oracle RTRIM function &#8226; Vinish.Dev","og_description":"Learn to use the Oracle RTRIM function to remove trailing characters. This simple SQL guide gives the syntax and examples to trim spaces.","og_url":"https:\/\/vinish.dev\/oracle-rtrim-function","og_site_name":"Vinish.Dev","article_publisher":"https:\/\/www.facebook.com\/foxinfotech2014","article_published_time":"2025-11-04T05:44:16+00:00","article_modified_time":"2025-11-07T10:59:33+00:00","og_image":[{"width":1200,"height":693,"url":"https:\/\/vinish.dev\/wp-content\/uploads\/2024\/09\/homepage-vinish.dev_.png","type":"image\/png"}],"author":"Vinish Kapoor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/x.com\/vinish_kapoor","twitter_site":"@foxinfotech","twitter_misc":{"Written by":"Vinish Kapoor","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vinish.dev\/oracle-rtrim-function#article","isPartOf":{"@id":"https:\/\/vinish.dev\/oracle-rtrim-function"},"author":{"name":"Vinish Kapoor","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f"},"headline":"Oracle RTRIM Function: A Simple Guide","datePublished":"2025-11-04T05:44:16+00:00","dateModified":"2025-11-07T10:59:33+00:00","mainEntityOfPage":{"@id":"https:\/\/vinish.dev\/oracle-rtrim-function"},"wordCount":292,"commentCount":0,"publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"keywords":["AI-Assisted"],"articleSection":["Oracle SQL","String Function"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vinish.dev\/oracle-rtrim-function#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vinish.dev\/oracle-rtrim-function","url":"https:\/\/vinish.dev\/oracle-rtrim-function","name":"Oracle RTRIM function &#8226; Vinish.Dev","isPartOf":{"@id":"https:\/\/vinish.dev\/#website"},"datePublished":"2025-11-04T05:44:16+00:00","dateModified":"2025-11-07T10:59:33+00:00","description":"Learn to use the Oracle RTRIM function to remove trailing characters. This simple SQL guide gives the syntax and examples to trim spaces.","breadcrumb":{"@id":"https:\/\/vinish.dev\/oracle-rtrim-function#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vinish.dev\/oracle-rtrim-function"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vinish.dev\/oracle-rtrim-function#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vinish.dev\/"},{"@type":"ListItem","position":2,"name":"Oracle SQL","item":"https:\/\/vinish.dev\/category\/oracle-sql"},{"@type":"ListItem","position":3,"name":"String Function","item":"https:\/\/vinish.dev\/category\/oracle-sql\/string-function"},{"@type":"ListItem","position":4,"name":"Oracle RTRIM Function: A Simple Guide"}]},{"@type":"WebSite","@id":"https:\/\/vinish.dev\/#website","url":"https:\/\/vinish.dev\/","name":"Vinish.Dev","description":"Vinish Kapoor&#039;s Blog: Best Oracle Blog for Developers","publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vinish.dev\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","url":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","contentUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png","width":192,"height":192,"caption":"Vinish Kapoor"},"logo":{"@id":"https:\/\/vinish.dev\/wp-content\/uploads\/2023\/12\/vinishprofile.png"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.facebook.com\/foxinfotech2014","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/foxinfotech"]},{"@type":"Person","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f","name":"Vinish Kapoor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a67232caa79b11f24f16c371866a96cfb575e011ebda6fa6e3d088a837a31bde?s=96&d=identicon&r=g","caption":"Vinish Kapoor"},"description":"Vinish Kapoor is a seasoned software development professional and a fervent enthusiast of artificial intelligence (AI). His impressive career spans over 25+ years, marked by a relentless pursuit of innovation and excellence in the field of information technology. As an Oracle ACE, Vinish has distinguished himself as a leading expert in Oracle technologies, a title awarded to individuals who have demonstrated their deep commitment, leadership, and expertise in the Oracle community.","sameAs":["https:\/\/vinish.dev\/","https:\/\/www.linkedin.com\/in\/vinish-kapoor\/","https:\/\/x.com\/https:\/\/x.com\/vinish_kapoor"]}]}},"_links":{"self":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20454","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/comments?post=20454"}],"version-history":[{"count":2,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20454\/revisions"}],"predecessor-version":[{"id":20716,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20454\/revisions\/20716"}],"wp:attachment":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/media?parent=20454"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/categories?post=20454"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/tags?post=20454"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}