{"id":20777,"date":"2025-11-11T10:34:54","date_gmt":"2025-11-11T05:04:54","guid":{"rendered":"https:\/\/vinish.dev\/?p=20777"},"modified":"2025-11-11T10:34:55","modified_gmt":"2025-11-11T05:04:55","slug":"oracle-json_object-function","status":"publish","type":"post","link":"https:\/\/vinish.dev\/oracle-json_object-function","title":{"rendered":"Oracle JSON_OBJECT Function"},"content":{"rendered":"\n<p>The <code>JSON_OBJECT<\/code> function in Oracle SQL is a \"constructor\" function. Its job is the opposite of <a href=\"https:\/\/vinish.dev\/oracle-json_value-function\">JSON_VALUE<\/a> or <a href=\"https:\/\/vinish.dev\/oracle-json_query-function\">JSON_QUERY<\/a>. Instead of <em>extracting<\/em> data from JSON, <code>JSON_OBJECT<\/code> <strong>builds<\/strong> a new JSON object string <em>from<\/em> regular SQL key-value pairs.<\/p>\n\n\n\n<p>This is essential when you need to generate JSON data (for an API, a report, or to store in a <code>CLOB<\/code> column) directly from your relational data. It's the partner to <a href=\"https:\/\/vinish.dev\/oracle-json_array-function\">JSON_ARRAY<\/a>, which builds JSON arrays.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is the JSON_OBJECT Function in Oracle?<\/h2>\n\n\n\n<p>The <code>JSON_OBJECT(KEY 'key' VALUE 'value', ...)<\/code> function takes a list of key-value pairs and returns a single <code>VARCHAR2<\/code> string (or <code>CLOB<\/code>\/<code>JSON<\/code> type) representing a JSON object.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>KEY 'name' VALUE 'John'<\/code> becomes <code>\"name\": \"John\"<\/code>.<\/li>\n\n\n\n<li><code>KEY 'age' VALUE 30<\/code> becomes <code>\"age\": 30<\/code>.<\/li>\n<\/ul>\n\n\n\n<p>It's the function you use to build JSON in the <code>\"{}\"<\/code> object format, right inside your SQL query.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">JSON_OBJECT Function Syntax<\/h2>\n\n\n\n<p>The syntax for <code>JSON_OBJECT<\/code> has a few variations, but the most common form is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>JSON_OBJECT(\n    &#91;KEY] key_string VALUE expr &#91;FORMAT JSON],\n    &#91;KEY] key_string VALUE expr &#91;FORMAT JSON],\n    ...\n    &#91; NULL ON NULL | ABSENT ON NULL ]\n    &#91; RETURNING data_type ]\n)\n<\/code><\/pre>\n\n\n\n<p>A popular and shorter syntax uses a colon (<code>:<\/code>) instead of <code>KEY<\/code> and <code>VALUE<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>JSON_OBJECT(\n    key_string : expr &#91;FORMAT JSON],\n    key_string : expr &#91;FORMAT JSON],\n    ...\n)\n<\/code><\/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>key_string<\/code><\/strong>: The property name (key) for your JSON object. This is a text string (e.g., <code>'name'<\/code>).<\/li>\n\n\n\n<li><strong><code>expr<\/code><\/strong>: The SQL value, column, or expression that will be the JSON value (e.g., <code>last_name<\/code>, <code>30<\/code>, <code>SYSDATE<\/code>).<\/li>\n\n\n\n<li><strong><code>[FORMAT JSON]<\/code><\/strong> (Optional): This is a critical clause. If your <code>expr<\/code> is <em>already<\/em> a JSON string (like the output of <code>JSON_ARRAY<\/code> or another <code>JSON_OBJECT<\/code>), you must use <code>FORMAT JSON<\/code> to prevent Oracle from treating it as a plain string and \"double-quoting\" it.<\/li>\n\n\n\n<li><strong><code>[NULL ON NULL | ABSENT ON NULL]<\/code><\/strong>:\n<ul class=\"wp-block-list\">\n<li><code>ABSENT ON NULL<\/code> (Default): If your <code>expr<\/code> is <code>NULL<\/code>, the entire key-value pair is <strong>omitted<\/strong> from the final object.<\/li>\n\n\n\n<li><code>NULL ON NULL<\/code>: If your <code>expr<\/code> is <code>NULL<\/code>, the key-value pair is <strong>included<\/strong> with a JSON <code>null<\/code> value (e.g., <code>\"middle_name\": null<\/code>).<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong><code>[RETURNING data_type]<\/code><\/strong> (Optional): Specifies the return type, such as <code>VARCHAR2(4000)<\/code> (default), <code>CLOB<\/code>, or <code>JSON<\/code>.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Oracle JSON_OBJECT Function Examples<\/h2>\n\n\n\n<p>All examples below use the <code>DUAL<\/code> table, which is a simple one-row table in Oracle for testing functions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example 1: Creating a Simple Object with JSON_OBJECT<\/h3>\n\n\n\n<p>This is the most common use case. We'll build a simple JSON object from text and number values. We will use the simple colon (<code>:<\/code>) syntax.<\/p>\n\n\n\n<p><strong>Query:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT\n  JSON_OBJECT(\n    'name' : 'John Doe',\n    'age'  : 30,\n    'active' : 'true'  -- Note: This becomes a JSON string \"true\"\n  ) AS \"JSON_Object_String\"\nFROM DUAL;\n<\/code><\/pre>\n\n\n\n<p><strong>Result:<\/strong> <em>(The result is a single JSON string. Note that <code>'true'<\/code> became a JSON string, not a boolean.)<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>JSON_Object_String\n------------------------------------------\n{\"name\":\"John Doe\",\"age\":30,\"active\":\"true\"}\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example 2: Handling NULL Values with JSON_OBJECT<\/h3>\n\n\n\n<p>This example shows the critical difference between the default <code>ABSENT ON NULL<\/code> and <code>NULL ON NULL<\/code>.<\/p>\n\n\n\n<p><strong>Query:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT\n  JSON_OBJECT(\n    'first_name' : 'John',\n    'middle_name' : NULL,\n    'last_name' : 'Doe'\n    -- ABSENT ON NULL is the default\n  ) AS \"Default_Null_Handling\",\n  \n  JSON_OBJECT(\n    'first_name' : 'John',\n    'middle_name' : NULL,\n    'last_name' : 'Doe'\n    NULL ON NULL  -- We explicitly ask to include NULLs\n  ) AS \"Null_On_Null_Handling\"\nFROM DUAL;\n<\/code><\/pre>\n\n\n\n<p><strong>Result:<\/strong> <em>(Notice the <code>middle_name<\/code> key is missing from the first result but present in the second.)<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Default_Null_Handling            Null_On_Null_Handling\n-------------------------------- -------------------------------------------\n{\"first_name\":\"John\",\"last_name\":\"Doe\"} {\"first_name\":\"John\",\"middle_name\":null,\"last_name\":\"Doe\"}\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Example 3: Nesting Objects and Arrays with <code>FORMAT JSON<\/code><\/h3>\n\n\n\n<p>This is a more advanced example. If you want to put a JSON object or array <em>inside<\/em> another JSON object, you <strong>must<\/strong> use the <code>FORMAT JSON<\/code> clause.<\/p>\n\n\n\n<p><strong>Query:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT\n  JSON_OBJECT(\n    'name' : 'Jane Doe',\n    'address' : JSON_OBJECT(\n                    'city' : 'New York',\n                    'zip'  : 10001\n                  ) FORMAT JSON, -- Nesting an object\n    \n    'skills' : JSON_ARRAY(\n                   'SQL', 'Python', 'JSON'\n                 ) FORMAT JSON   -- Nesting an array\n                 \n    NULL ON NULL -- Applied to the whole object\n    \n  ) AS \"Complex_JSON\"\nFROM DUAL;\n<\/code><\/pre>\n\n\n\n<p><strong>Result:<\/strong> <em>(The <code>address<\/code> and <code>skills<\/code> values are correctly nested as JSON, not as double-quoted strings.)<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Complex_JSON\n--------------------------------------------------------------------------------\n{\"name\":\"Jane Doe\",\"address\":{\"city\":\"New York\",\"zip\":10001},\"skills\":&#91;\"SQL\",\"Python\",\"JSON\"]}\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>The JSON_OBJECT function in Oracle SQL is a \"constructor\" function. Its job is the opposite of JSON_VALUE or JSON_QUERY. Instead of extracting data from JSON, JSON_OBJECT builds a new JSON object string from regular SQL key-value pairs. This is essential when you need to generate JSON data (for an API, a report, or to store [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1831,1807],"tags":[1822],"class_list":["post-20777","post","type-post","status-publish","format-standard","hentry","category-json-function","category-oracle-sql","tag-ai-assisted"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Oracle JSON_OBJECT Function &#8226; Vinish.Dev<\/title>\n<meta name=\"description\" content=\"Learn the Oracle JSON_OBJECT function. This simple SQL guide explains how to create JSON object strings from SQL key-value pairs.\" \/>\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-json_object-function\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle JSON_OBJECT Function &#8226; Vinish.Dev\" \/>\n<meta property=\"og:description\" content=\"Learn the Oracle JSON_OBJECT function. This simple SQL guide explains how to create JSON object strings from SQL key-value pairs.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vinish.dev\/oracle-json_object-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-11T05:04:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-11T05:04:55+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-json_object-function#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-json_object-function\"},\"author\":{\"name\":\"Vinish Kapoor\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/a7790479716d2a54131ca873f8483d3f\"},\"headline\":\"Oracle JSON_OBJECT Function\",\"datePublished\":\"2025-11-11T05:04:54+00:00\",\"dateModified\":\"2025-11-11T05:04:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-json_object-function\"},\"wordCount\":411,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#\\\/schema\\\/person\\\/df5e5ca816f6f4302efc03cf58dc97b4\"},\"keywords\":[\"AI-Assisted\"],\"articleSection\":[\"JSON Function\",\"Oracle SQL\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-json_object-function#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-json_object-function\",\"url\":\"https:\\\/\\\/vinish.dev\\\/oracle-json_object-function\",\"name\":\"Oracle JSON_OBJECT Function &#8226; Vinish.Dev\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/#website\"},\"datePublished\":\"2025-11-11T05:04:54+00:00\",\"dateModified\":\"2025-11-11T05:04:55+00:00\",\"description\":\"Learn the Oracle JSON_OBJECT function. This simple SQL guide explains how to create JSON object strings from SQL key-value pairs.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-json_object-function#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vinish.dev\\\/oracle-json_object-function\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vinish.dev\\\/oracle-json_object-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\":\"JSON Function\",\"item\":\"https:\\\/\\\/vinish.dev\\\/category\\\/oracle-sql\\\/json-function\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Oracle JSON_OBJECT Function\"}]},{\"@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 JSON_OBJECT Function &#8226; Vinish.Dev","description":"Learn the Oracle JSON_OBJECT function. This simple SQL guide explains how to create JSON object strings from SQL key-value pairs.","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-json_object-function","og_locale":"en_US","og_type":"article","og_title":"Oracle JSON_OBJECT Function &#8226; Vinish.Dev","og_description":"Learn the Oracle JSON_OBJECT function. This simple SQL guide explains how to create JSON object strings from SQL key-value pairs.","og_url":"https:\/\/vinish.dev\/oracle-json_object-function","og_site_name":"Vinish.Dev","article_publisher":"https:\/\/www.facebook.com\/foxinfotech2014","article_published_time":"2025-11-11T05:04:54+00:00","article_modified_time":"2025-11-11T05:04:55+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-json_object-function#article","isPartOf":{"@id":"https:\/\/vinish.dev\/oracle-json_object-function"},"author":{"name":"Vinish Kapoor","@id":"https:\/\/vinish.dev\/#\/schema\/person\/a7790479716d2a54131ca873f8483d3f"},"headline":"Oracle JSON_OBJECT Function","datePublished":"2025-11-11T05:04:54+00:00","dateModified":"2025-11-11T05:04:55+00:00","mainEntityOfPage":{"@id":"https:\/\/vinish.dev\/oracle-json_object-function"},"wordCount":411,"commentCount":0,"publisher":{"@id":"https:\/\/vinish.dev\/#\/schema\/person\/df5e5ca816f6f4302efc03cf58dc97b4"},"keywords":["AI-Assisted"],"articleSection":["JSON Function","Oracle SQL"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vinish.dev\/oracle-json_object-function#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vinish.dev\/oracle-json_object-function","url":"https:\/\/vinish.dev\/oracle-json_object-function","name":"Oracle JSON_OBJECT Function &#8226; Vinish.Dev","isPartOf":{"@id":"https:\/\/vinish.dev\/#website"},"datePublished":"2025-11-11T05:04:54+00:00","dateModified":"2025-11-11T05:04:55+00:00","description":"Learn the Oracle JSON_OBJECT function. This simple SQL guide explains how to create JSON object strings from SQL key-value pairs.","breadcrumb":{"@id":"https:\/\/vinish.dev\/oracle-json_object-function#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vinish.dev\/oracle-json_object-function"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/vinish.dev\/oracle-json_object-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":"JSON Function","item":"https:\/\/vinish.dev\/category\/oracle-sql\/json-function"},{"@type":"ListItem","position":4,"name":"Oracle JSON_OBJECT Function"}]},{"@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\/20777","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=20777"}],"version-history":[{"count":1,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20777\/revisions"}],"predecessor-version":[{"id":20778,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/posts\/20777\/revisions\/20778"}],"wp:attachment":[{"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/media?parent=20777"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/categories?post=20777"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vinish.dev\/wp-json\/wp\/v2\/tags?post=20777"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}