{"id":5593,"date":"2020-08-30T00:14:35","date_gmt":"2020-08-30T00:14:35","guid":{"rendered":"https:\/\/vinish.dev\/?p=5593"},"modified":"2025-11-11T14:50:16","modified_gmt":"2025-11-11T09:20:16","slug":"oracle-apex-shuttle-item","status":"publish","type":"post","link":"https:\/\/vinish.dev\/oracle-apex-shuttle-item","title":{"rendered":"Creating a Shuttle Item in Oracle APEX"},"content":{"rendered":"\n<p>In Oracle APEX, a shuttle item is a kind of list item having a multi-select option. It has two boxes (left and right) containing lists; the left side shows the source of the list and right side the selected values.<\/p>\n\n\n\n<p>The user can select the list options using its controls. <a href=\"https:\/\/vinish.dev\/oracle-apex-interactive-grid-get-selected-rows-example\">Selected values<\/a> are stored in a single colon-delimited string.<\/p>\n\n\n\n<p>In this tutorial, you will learn how to create a shuttle item in Oracle APEX.<\/p>\n\n\n\n<p>Here I am going to give two examples for this:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Storing shuttle item values into a single field of a table.<\/li>\n\n\n\n<li>Storing shuttle item values into a separate table as multiple records.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Creating a Shuttle Item in Oracle APEX<\/h2>\n\n\n\n<p>In the following example, we are going to store the selected shuttle item values into a field.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example 1: Storing Shuttle Item Selected Values into a Field<\/h3>\n\n\n\n<p>To do this, you can use any of your existing <code>Varchar2<\/code> column in the table, but it should have a good length to store the selected values. <\/p>\n\n\n\n<p>Or you can add a new column as <code>Varchar2(4000)<\/code> into your table.<\/p>\n\n\n\n<p>Now open your page in Oracle Apex, go to the region your table based on and add the new item and change its type to <code>Shuttle<\/code>.<\/p>\n\n\n\n<p>Select the source as SQL query and specify the SQL query something like below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">select product_name d, product_id r\n   from demo_product_info\norder by product_name<\/pre>\n\n\n\n<p>You can also select the other type of sources such as Static Values and Shared Components LOV, etc.<\/p>\n\n\n\n<p>So now we have the <code>product_name<\/code> as the display column and the <code>product_id<\/code> as the return column.<\/p>\n\n\n\n<p>Below is the screenshot for the above setting:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"580\" src=\"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-shuttle-item-1024x580.png\" alt=\"Oracle Apex shuttle item settings.\" class=\"wp-image-5594\" srcset=\"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-shuttle-item-1024x580.png 1024w, https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-shuttle-item-300x170.png 300w, https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-shuttle-item-600x340.png 600w, https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-shuttle-item-768x435.png 768w, https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-shuttle-item-1536x870.png 1536w, https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-shuttle-item.png 1836w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>You also need to specify the source table column for the shuttle item.<\/p>\n\n\n\n<p>Now save the changes and run the page to test. The output will be as shown in the below image:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-default\"><img decoding=\"async\" width=\"1024\" height=\"497\" src=\"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/shuttle-item-demo-apex-1024x497.png\" alt=\"Oracle Apex shuttle item demo.\" class=\"wp-image-5596\" srcset=\"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/shuttle-item-demo-apex-1024x497.png 1024w, https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/shuttle-item-demo-apex-300x145.png 300w, https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/shuttle-item-demo-apex-600x291.png 600w, https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/shuttle-item-demo-apex-768x372.png 768w, https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/shuttle-item-demo-apex.png 1192w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>The selected product ids will be stored into a field like <code>1001:1008:1011:1020<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example 2: Storing Selected Shuttle Item Values into a Separate Table<\/h3>\n\n\n\n<p>To store the selected values into a table, you can create a process just after the default form process and use the following PL\/SQL code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Declare\n  Cursor c_values\n   is \n  Select\n    t.column_value As prodcut_ids\n  From\n     Table ( apex_string.split(:P9_PRODUCTS, ':') ) t\n  Where\n     t.column_value Is Not Null;\nBegin\n  for c in c_values loop\n     insert into your_table (product_id)\n       values (c.product_ids);\n  end loop;\nEnd;<\/pre>\n\n\n\n<p>The above PL\/SQL code will insert the selected shuttle item values as multiple records.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Oracle APEX, a shuttle item is a kind of list item having a multi-select option. It has two boxes (left and right) containing lists; the left side shows the source of the list and right side the selected values. The user can select the list options using its controls. Selected values are stored in [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":15553,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-5593","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-apex"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Creating a Shuttle Item in Oracle APEX &#8226; Vinish.Dev<\/title>\n<meta name=\"description\" content=\"Learn how to create a shuttle item in Oracle APEX. Examples are provided to store shuttle item values to a field or another table.\" \/>\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-apex-shuttle-item\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating a Shuttle Item in Oracle APEX &#8226; Vinish.Dev\" \/>\n<meta property=\"og:description\" content=\"Learn how to create a shuttle item in Oracle APEX. Examples are provided to store shuttle item values to a field or another table.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vinish.dev\/oracle-apex-shuttle-item\" \/>\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=\"2020-08-30T00:14:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-11T09:20:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-creating-a-shuttle-item-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item\"},\"author\":{\"name\":\"Vinish Kapoor\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\"},\"headline\":\"Creating a Shuttle Item in Oracle APEX\",\"datePublished\":\"2020-08-30T00:14:35+00:00\",\"dateModified\":\"2025-11-11T09:20:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item\"},\"wordCount\":358,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"image\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/oracle-apex-creating-a-shuttle-item-1.jpg\",\"articleSection\":[\"Oracle APEX\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item\",\"url\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item\",\"name\":\"Creating a Shuttle Item in Oracle APEX &#8226; Vinish.Dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/oracle-apex-creating-a-shuttle-item-1.jpg\",\"datePublished\":\"2020-08-30T00:14:35+00:00\",\"dateModified\":\"2025-11-11T09:20:16+00:00\",\"description\":\"Learn how to create a shuttle item in Oracle APEX. Examples are provided to store shuttle item values to a field or another table.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item#primaryimage\",\"url\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/oracle-apex-creating-a-shuttle-item-1.jpg\",\"contentUrl\":\"https:\\\/\\\/vinish.dev\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/oracle-apex-creating-a-shuttle-item-1.jpg\",\"width\":640,\"height\":512,\"caption\":\"Oracle Apex: Creating a Shuttle Item\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-apex-shuttle-item#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vinish.dev\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle APEX\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/apex\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Creating a Shuttle Item in Oracle APEX\"}]},{\"@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":"Creating a Shuttle Item in Oracle APEX &#8226; Vinish.Dev","description":"Learn how to create a shuttle item in Oracle APEX. Examples are provided to store shuttle item values to a field or another table.","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-apex-shuttle-item","og_locale":"en_US","og_type":"article","og_title":"Creating a Shuttle Item in Oracle APEX &#8226; Vinish.Dev","og_description":"Learn how to create a shuttle item in Oracle APEX. Examples are provided to store shuttle item values to a field or another table.","og_url":"https:\/\/vinish.dev\/oracle-apex-shuttle-item","og_site_name":"Vinish.Dev","article_publisher":"https:\/\/www.facebook.com\/foxinfotech2014","article_published_time":"2020-08-30T00:14:35+00:00","article_modified_time":"2025-11-11T09:20:16+00:00","og_image":[{"width":640,"height":512,"url":"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-creating-a-shuttle-item-1.jpg","type":"image\/jpeg"}],"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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item#article","isPartOf":{"@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item"},"author":{"name":"Vinish Kapoor","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f"},"headline":"Creating a Shuttle Item in Oracle APEX","datePublished":"2020-08-30T00:14:35+00:00","dateModified":"2025-11-11T09:20:16+00:00","mainEntityOfPage":{"@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item"},"wordCount":358,"commentCount":4,"publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"image":{"@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item#primaryimage"},"thumbnailUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-creating-a-shuttle-item-1.jpg","articleSection":["Oracle APEX"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vinish.dev\/oracle-apex-shuttle-item#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item","url":"https:\/\/vinish.dev\/oracle-apex-shuttle-item","name":"Creating a Shuttle Item in Oracle APEX &#8226; Vinish.Dev","isPartOf":{"@id":"https:\/\/vinish.dev\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item#primaryimage"},"image":{"@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item#primaryimage"},"thumbnailUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-creating-a-shuttle-item-1.jpg","datePublished":"2020-08-30T00:14:35+00:00","dateModified":"2025-11-11T09:20:16+00:00","description":"Learn how to create a shuttle item in Oracle APEX. Examples are provided to store shuttle item values to a field or another table.","breadcrumb":{"@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vinish.dev\/oracle-apex-shuttle-item"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item#primaryimage","url":"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-creating-a-shuttle-item-1.jpg","contentUrl":"https:\/\/vinish.dev\/wp-content\/uploads\/2020\/08\/oracle-apex-creating-a-shuttle-item-1.jpg","width":640,"height":512,"caption":"Oracle Apex: Creating a Shuttle Item"},{"@type":"BreadcrumbList","@id":"https:\/\/vinish.dev\/oracle-apex-shuttle-item#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vinish.dev\/"},{"@type":"ListItem","position":2,"name":"Oracle APEX","item":"https:\/\/vinish.dev\/category\/apex"},{"@type":"ListItem","position":3,"name":"Creating a Shuttle Item in Oracle APEX"}]},{"@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\/5593","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=5593"}],"version-history":[{"count":2,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/5593\/revisions"}],"predecessor-version":[{"id":20830,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/5593\/revisions\/20830"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/media\/15553"}],"wp:attachment":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/media?parent=5593"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/categories?post=5593"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/tags?post=5593"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}