{"id":115328,"date":"2022-11-18T07:00:00","date_gmt":"2022-11-18T05:00:00","guid":{"rendered":"https:\/\/www.javacodegeeks.com\/?p=115328"},"modified":"2022-11-15T15:56:58","modified_gmt":"2022-11-15T13:56:58","slug":"convert-json-file-to-yaml-using-jq","status":"publish","type":"post","link":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html","title":{"rendered":"Convert JSON file to YAML using JQ"},"content":{"rendered":"<h3 class=\"wp-block-heading\">What is this article about?<\/h3>\n<p>When you are working on the web or with DevOps or GitOps, you will have cases where you want to transform a JSON file to YAML. This article walks you though converting the JSON document to YAML using the \u201cjq\u201d tool.<\/p>\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/yaml.org\/\" target=\"_blank\" rel=\"noopener\">Official YAML Spec<\/a><\/li>\n<li><a href=\"https:\/\/www.json.org\/json-en.html\" target=\"_blank\" rel=\"noopener\">Official JSON Spec<\/a><\/li>\n<li><a href=\"https:\/\/stedolan.github.io\/jq\/\">JQ Tool<\/a> (jq is like \u2018sed\u2019 for JSON data)<\/li>\n<\/ul>\n<h3 class=\"wp-block-heading\">Why YAML (over JSON)?<\/h3>\n<p>Here are a few reasons why developers prefer YAML over JSON:<\/p>\n<ul class=\"wp-block-list\">\n<li>YAML is visually easier to look at. (Sometimes the {\u2026} syntax with JSON can overwhelm your eyes with too much noise.)<\/li>\n<li>YAML has support for comments (JSON does not have a way to add comments.) YAML comments begin with the number sign (#)<\/li>\n<li>YAML has supports multiline strings using the \u201cblock style indicator\u201d (|). It further enhances it with \u201cblock chomping indicator\u201d with the use of (+), (-), default.\n<ul class=\"wp-block-list\">\n<li>The block style indicates how newlines inside the block should behave.<\/li>\n<li>The chomping indicator controls what should happen with newlines at the end of the string.<\/li>\n<li>See <a href=\"https:\/\/yaml-multiline.info\/\" target=\"_blank\" rel=\"noopener\">YAML Multiline<\/a> for a very good description on the usage.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3 class=\"wp-block-heading\">Prerequisite<\/h3>\n<ul class=\"wp-block-list\">\n<li>Make sure you have downloaded JQ and placed it in your PATH.<\/li>\n<li>Edit and place the following into <code>~\/.jq<\/code><\/li>\n<\/ul>\n<div>\n<pre class=\"brush:java\">def yamlify2:\n    (objects | to_entries | (map(.key | length) | max + 2) as $w |\n        .[] | (.value | type) as $type |\n        if $type == \"array\" then\n            \"\\(.key):\", (.value | yamlify2)\n        elif $type == \"object\" then\n            \"\\(.key):\", \"    \\(.value | yamlify2)\"\n        else\n            \"\\(.key):\\(\" \" * (.key | $w - length))\\(.value)\"\n        end\n    )\n    \/\/ (arrays | select(length &gt; 0)[] | [yamlify2] |\n        \"  - \\(.[0])\", \"    \\(.[1:][])\"\n    )\n    \/\/ .\n    ;<\/pre>\n<\/div>\n<p>The above code adds a new function \u201cyamlify2\u201d to your library of jq functions.<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<h3 class=\"wp-block-heading\">JSON to YAML conversion using JQ<\/h3>\n<p>Now we are ready to convert a JSON document to YAML.<\/p>\n<h2 class=\"wp-block-heading\">Syntax:<\/h2>\n<div>\n<pre class=\"brush:java\">jq -r yamlify2 input.json\n# or\njq -r yamlify2 input.json &gt; output.yaml<\/pre>\n<\/div>\n<h2 class=\"wp-block-heading\">Working Example:<\/h2>\n<p>Filename: glossary.json<\/p>\n<div>\n<pre class=\"brush:java\">{\n    \"glossary\": {\n        \"title\": \"example glossary\",\n\t\t\"GlossDiv\": {\n            \"title\": \"S\",\n\t\t\t\"GlossList\": {\n                \"GlossEntry\": {\n                    \"ID\": \"SGML\",\n\t\t\t\t\t\"SortAs\": \"SGML\",\n\t\t\t\t\t\"GlossTerm\": \"Standard Generalized Markup Language\",\n\t\t\t\t\t\"Acronym\": \"SGML\",\n\t\t\t\t\t\"Abbrev\": \"ISO 8879:1986\",\n\t\t\t\t\t\"GlossDef\": {\n                        \"para\": \"A meta-markup language, used to create markup languages such as DocBook.\",\n\t\t\t\t\t\t\"GlossSeeAlso\": [\"GML\", \"XML\"]\n                    },\n\t\t\t\t\t\"GlossSee\": \"markup\"\n                }\n            }\n        }\n    }\n}<\/pre>\n<\/div>\n<div>\n<pre class=\"brush:java\">jq -r yamlify2 glossary.json\n# or\njq -r yamlify2 glossary.json &gt; glossary.yaml<\/pre>\n<\/div>\n<p>Result (under glossary.yaml)<\/p>\n<div>\n<pre class=\"brush:java\">glossary:\n    title:     example glossary\n    GlossDiv:\n        title:      S\n        GlossList:\n            GlossEntry:\n                ID:         SGML\n                SortAs:     SGML\n                GlossTerm:  Standard Generalized Markup Language\n                Acronym:    SGML\n                Abbrev:     ISO 8879:1986\n                GlossDef:\n                    para:          A meta-markup language, used to create markup languages such as DocBook.\n                    GlossSeeAlso:\n                      - GML\n                      - XML\n                GlossSee:   markup<\/pre>\n<\/div>\n<p>You should have a YAML file ready to use in your project.<\/p>\n<p>Cheers<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>\n<p>Published on Java Code Geeks with permission by Venkatt Guhesan, partner at our <a href=\"\/\/www.javacodegeeks.com\/join-us\/jcg\/\" target=\"_blank\" rel=\"noopener\">JCG program<\/a>. See the original article here: <a href=\"https:\/\/mythinkpond.com\/post\/2022-11-08\/\" target=\"_blank\" rel=\"noopener\">Convert JSON file to YAML using JQ<\/a><\/p>\n<p>Opinions expressed by Java Code Geeks contributors are their own.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>What is this article about? When you are working on the web or with DevOps or GitOps, you will have cases where you want to transform a JSON file to YAML. This article walks you though converting the JSON document to YAML using the \u201cjq\u201d tool. Official YAML Spec Official JSON Spec JQ Tool (jq &hellip;<\/p>\n","protected":false},"author":210,"featured_media":264,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[14],"tags":[],"class_list":["post-115328","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-devops"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Convert JSON file to YAML using JQ - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"What is this article about? When you are working on the web or with DevOps or GitOps, you will have cases where you want to transform a JSON file to YAML.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Convert JSON file to YAML using JQ - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"What is this article about? When you are working on the web or with DevOps or GitOps, you will have cases where you want to transform a JSON file to YAML.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html\" \/>\n<meta property=\"og:site_name\" content=\"Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-18T05:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/devops-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Venkatt Guhesan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Venkatt Guhesan\" \/>\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:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html\"},\"author\":{\"name\":\"Venkatt Guhesan\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/957d68293c9b78766d614273df7f4ddc\"},\"headline\":\"Convert JSON file to YAML using JQ\",\"datePublished\":\"2022-11-18T05:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html\"},\"wordCount\":295,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/devops-logo.jpg\",\"articleSection\":[\"DevOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html\",\"name\":\"Convert JSON file to YAML using JQ - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/devops-logo.jpg\",\"datePublished\":\"2022-11-18T05:00:00+00:00\",\"description\":\"What is this article about? When you are working on the web or with DevOps or GitOps, you will have cases where you want to transform a JSON file to YAML.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html#primaryimage\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/devops-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/devops-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2022\\\/11\\\/convert-json-file-to-yaml-using-jq.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DevOps\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/category\\\/devops\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Convert JSON file to YAML using JQ\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Developers Resource Center\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.javacodegeeks.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/javacodegeeks\",\"https:\\\/\\\/x.com\\\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/957d68293c9b78766d614273df7f4ddc\",\"name\":\"Venkatt Guhesan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f2c6eca535021fdc18ed6159f36c7cc7ca82c4ba74eca68fdf701e6fd325d201?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f2c6eca535021fdc18ed6159f36c7cc7ca82c4ba74eca68fdf701e6fd325d201?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f2c6eca535021fdc18ed6159f36c7cc7ca82c4ba74eca68fdf701e6fd325d201?s=96&d=mm&r=g\",\"caption\":\"Venkatt Guhesan\"},\"description\":\"I work as an Enterprise UI Architect for DataDirect Networks. I have been developing DirectMon, an Enterprise Monitoring and Management Solution for all of the DDN products. Before that I worked at DrFirst engineering an e-prescribing platform for controlled substances\",\"sameAs\":[\"http:\\\/\\\/mythinkpond.wordpress.com\\\/\"],\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/author\\\/venkatt-guhesan\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Convert JSON file to YAML using JQ - Java Code Geeks","description":"What is this article about? When you are working on the web or with DevOps or GitOps, you will have cases where you want to transform a JSON file to YAML.","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:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html","og_locale":"en_US","og_type":"article","og_title":"Convert JSON file to YAML using JQ - Java Code Geeks","og_description":"What is this article about? When you are working on the web or with DevOps or GitOps, you will have cases where you want to transform a JSON file to YAML.","og_url":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2022-11-18T05:00:00+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/devops-logo.jpg","type":"image\/jpeg"}],"author":"Venkatt Guhesan","twitter_card":"summary_large_image","twitter_creator":"@javacodegeeks","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Venkatt Guhesan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html#article","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html"},"author":{"name":"Venkatt Guhesan","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/957d68293c9b78766d614273df7f4ddc"},"headline":"Convert JSON file to YAML using JQ","datePublished":"2022-11-18T05:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html"},"wordCount":295,"commentCount":1,"publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/devops-logo.jpg","articleSection":["DevOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html","url":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html","name":"Convert JSON file to YAML using JQ - Java Code Geeks","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/devops-logo.jpg","datePublished":"2022-11-18T05:00:00+00:00","description":"What is this article about? When you are working on the web or with DevOps or GitOps, you will have cases where you want to transform a JSON file to YAML.","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html#primaryimage","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/devops-logo.jpg","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/devops-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/2022\/11\/convert-json-file-to-yaml-using-jq.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"DevOps","item":"https:\/\/www.javacodegeeks.com\/category\/devops"},{"@type":"ListItem","position":3,"name":"Convert JSON file to YAML using JQ"}]},{"@type":"WebSite","@id":"https:\/\/www.javacodegeeks.com\/#website","url":"https:\/\/www.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Developers Resource Center","publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/957d68293c9b78766d614273df7f4ddc","name":"Venkatt Guhesan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f2c6eca535021fdc18ed6159f36c7cc7ca82c4ba74eca68fdf701e6fd325d201?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f2c6eca535021fdc18ed6159f36c7cc7ca82c4ba74eca68fdf701e6fd325d201?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f2c6eca535021fdc18ed6159f36c7cc7ca82c4ba74eca68fdf701e6fd325d201?s=96&d=mm&r=g","caption":"Venkatt Guhesan"},"description":"I work as an Enterprise UI Architect for DataDirect Networks. I have been developing DirectMon, an Enterprise Monitoring and Management Solution for all of the DDN products. Before that I worked at DrFirst engineering an e-prescribing platform for controlled substances","sameAs":["http:\/\/mythinkpond.wordpress.com\/"],"url":"https:\/\/www.javacodegeeks.com\/author\/venkatt-guhesan"}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/115328","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/users\/210"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=115328"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/115328\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media\/264"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=115328"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=115328"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=115328"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}