{"id":10020,"date":"2023-03-30T17:17:30","date_gmt":"2023-03-30T17:17:30","guid":{"rendered":"https:\/\/zappysys.com\/blog\/?p=10020"},"modified":"2023-03-30T17:18:58","modified_gmt":"2023-03-30T17:18:58","slug":"export-create-json-file-informatica-sql-query-database-tables","status":"publish","type":"post","link":"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/","title":{"rendered":"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables)"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>In this article, you will learn how to create simple or complex JSON file in Informatica just in a few clicks. We will use the Powerful Export JSON Command line Builder from <a href=\"https:\/\/zappysys.com\/products\/zappyshell\/data-export-command-line-tools-json-excel-csv-pdf\/\">ZappyShell<\/a>. Using this Portable \/ xCopy style command line you can build nested\/complex JSON \/ XML or even CSV from single \/ multiple SQL Queries as Input or Select Database Tables as Source. Later you can copy generated command line from Tool and execute in any tool like Informatica \/ Talend \/ DataStage or Automation Script like Python \/ PowerShell.<\/p>\n<h2>Prerequisite<\/h2>\n<p>This article assumes you have access to Informatica Developer Tools and basic knowledge of command-line tools.<\/p>\n<ol>\n<li><a href=\"https:\/\/zappysys.com\/products\/zappyshell\/\">Download ZappyShell<\/a> Command line utility (Click on Download Button). You can get msi and Zip (Poratble \/ xCopy version)<\/li>\n<li>If you want to use the Portable version just extract ZappyShell-xCopy zip to some folder lets say (C:\\ZappyShell). If you installed MSI then its usually in C:\\Program Files (x86)\\ZappySys<\/li>\n<li>Double click on DbCommandBuilder.exe <a href=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/index.htm#page=db\/db.htm\">as listed here<\/a>\u00a0 to get started. At the end of this exercise, you will be able to generate something like the below JSON File in few clicks in Informatica or any other Tool \/ Programming Language you prefer which has option to invoke command line&#8230;<\/li>\n<li>For all possible command line options <a href=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/db\/db-db-export.htm\" target=\"_blank\" rel=\"noopener\">Refer this<\/a><\/li>\n<li>So lets get started<\/li>\n<\/ol>\n<h2>Sample JSON Created by ZappyShell from Informatica<\/h2>\n<p>&nbsp;<\/p>\n<div style=\"width: 680px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" class=\"figureimage\" title=\"Sample JSON Created by Informatica Workflow (Create From Database SQL Query or Tables)\" src=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/images\/dbcommandbuilder\/db-command-builder-json-custom-output.png\" alt=\"Sample JSON Created by Informatica Workflow (Create From Database SQL Query or Tables)\" width=\"670\" height=\"626\" \/><p class=\"wp-caption-text\">Sample JSON Created by Informatica Workflow (Create From Database SQL Query or Tables)<\/p><\/div>\n<h2>Create Command Line to Export JSON File from Database SQL Query \/ Tables<\/h2>\n<p>In this section, we will see how to build Command Line which you can then execute in Informatica Command Time and later Schedule Export Job to Produce JSON File on a predefined schedule or manually.<\/p>\n<ol>\n<li>Open DbCommandBuilder.exe and configure the Connection \/ Data source(s)\u00a0<a href=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/index.htm#page=db\/db.htm\">as listed here<\/a>\u00a0.<img decoding=\"async\" class=\"figureimage\" title=\"ZappyShell - Open Installed File or Directory\" src=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/images\/open-zappyshell.png\" alt=\"ZappyShell - Open Installed File or Directory\" \/><\/li>\n<li>Select JSON Export Option from the Dropdown. You can also choose XML, Excel or CSV<img decoding=\"async\" class=\"figureimage\" title=\"XML file generate\" src=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/images\/dbcommandbuilder\/db-command-builder-xml.png\" alt=\"XML file generate\" \/><\/li>\n<li>You can use the Custom Layout Option if you wish to Export using custom Output Layout else just choose tables you like to export or type SQL query.<br \/>\n<img decoding=\"async\" src=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/images\/dbcommandbuilder\/db-command-builder-json-custom-layout.png\" alt=\"JSON Custom Layout\" \/><\/li>\n<li>Configure your Input Dataset(s) (can be SQL Queries or Tables) and define Desired Layout for your Output File.<img decoding=\"async\" src=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/images\/dbcommandbuilder\/db-command-builder-json-custom-layout-add-dataset.png\" alt=\"JSON Custom Layout - Add Dataset\" \/><\/li>\n<li>Here is just an example of how to define an Array for a nested layout in a JSON or XML file.<img decoding=\"async\" src=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/images\/dbcommandbuilder\/db-command-builder-json-custom-layout-add-element-in-document-array.png\" alt=\"Layout Editor to define Structure of JSON \/ XML Output\" \/><\/li>\n<li>t the end of configuration you may see command line like below (more examples <a href=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/db\/db-db-export.htm\">listed here<\/a>)<strong>Example: Simple mode Export (Microsoft SQL Server)<\/strong>\n<pre class=\"lang:default highlight:0 decode:true\">db.exe export customers --json -o c:\\data\\cust.json --connstr \"Data Source=localhost;Initial Catalog=Northwind;Integrated Security=SSPI;\" -y<\/pre>\n<p><strong>Example: For Simple mode Export (MySQL SQL Server &#8211; ODBC Driver)<\/strong><\/p>\n<pre class=\"lang:default highlight:0 decode:true\">export customers --out c:\\data\\customers.json --json --overwrite --connstr \"Driver={MySQL ODBC 5.2 ANSI Driver};Server=your_server_name_or_ip;Port=3306;Uid=user1;pwd=SomeP@ssword;Database=your_db_name\"<\/pre>\n<p><strong><strong>Example: For custom layout mode Export<br \/>\n<\/strong><\/strong><\/p>\n<pre class=\"lang:default highlight:0 decode:true\">export --map c:\\data\\MySampleMap.xml -o c:\\data\\customers.json --json --connstr \"Data Source=localhost;Initial Catalog=Northwind;Integrated Security=SSPI;\" -y<\/pre>\n<\/li>\n<li>Once the Command line is created you can click <strong>Run<\/strong>\u00a0to test and then copy it into tools like Informatica Command Task (see next section).<\/li>\n<\/ol>\n<h2>Export \/ Create JSON File In Informatica<\/h2>\n<ol>\n<li>Once the command line is prepared (see previous section) we can open Informatica Developer (D)<\/li>\n<li>Connect to your Repository and create a new workflow<\/li>\n<li>Drag new Command Task,\u00a0from Toolbox and double click to edit\n<div id=\"attachment_10021\" style=\"width: 691px\" class=\"wp-caption alignnone\"><a href=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-10021\" class=\"size-full wp-image-10021\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png\" alt=\"Informatica Command Task\" width=\"681\" height=\"281\" srcset=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png 681w, https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task-300x124.png 300w\" sizes=\"(max-width: 681px) 100vw, 681px\" \/><\/a><p id=\"caption-attachment-10021\" class=\"wp-caption-text\">Informatica Command Task<\/p><\/div><\/li>\n<li>Enter the sample command line we obtained from the previous step<\/li>\n<li>Save the workflow and run it&#8230; That&#8217;s it you will see the JSON file generated<\/li>\n<\/ol>\n<h2>Export \/\u00a0Create XML File In Informatica<\/h2>\n<p>Same Steps as above except choose File format as XML and you will see output like the below once you run the command line.<\/p>\n<div style=\"width: 905px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" class=\"figureimage\" title=\"Export \/ Create XML File In Informatica\" src=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/images\/dbcommandbuilder\/db-command-builder-xml.png\" alt=\"Export \/ Create XML File In Informatica\" width=\"895\" height=\"160\" \/><p class=\"wp-caption-text\">Export \/ Create XML File In Informatica<\/p><\/div>\n<h2>Export \/ Create CSV File In Informatica<\/h2>\n<p>Same Steps as above except choose File format as CSV and you will see output like the below once you run the command line.<\/p>\n<div style=\"width: 817px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" class=\"figureimage\" title=\"Generate CSV Files in Informatica\" src=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/images\/dbcommandbuilder\/db-command-builder-csv-output.png\" alt=\"Generate CSV Files in Informatica\" width=\"807\" height=\"507\" \/><p class=\"wp-caption-text\">Generate CSV Files in Informatica<\/p><\/div>\n<h2>Export \/ Create Excel File In Informatica<\/h2>\n<p>Same Steps as above except choose File format as Excel and you will see output like the below once you run the command line.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/zappysys.com\/onlinehelp\/zappyshell\/scr\/images\/export-sql-server-table-to-excel-split-by-column.png\" alt=\"Export SQL Server Table to Excel files (split automatically using group by column)\" \/><\/p>\n<h2>Conclusion<\/h2>\n<p>In this post, we just saw how easy it is to generate JSON \/ XML \/ Excel or CSV files in tools like Informatica, Talend, python, PowerShell in few clicks without coding. You can schedule job to generate JSON \/ XML files from Database tables or SQL Query. <a href=\"https:\/\/zappysys.com\/products\/zappyshell\/download\/\">Download ZappyShell<\/a> Today and try it to see what else you can do with it.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this article, you will learn how to create simple or complex JSON file in Informatica just in a few clicks. We will use the Powerful Export JSON Command line Builder from ZappyShell. Using this Portable \/ xCopy style command line you can build nested\/complex JSON \/ XML or even CSV from single \/ [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":10021,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[612],"tags":[97,128,21,75,6,7],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\r\n<title>Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) | ZappySys Blog<\/title>\r\n<meta name=\"description\" content=\"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) - ZappySys Blog\" \/>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) | ZappySys Blog\" \/>\r\n<meta property=\"og:description\" content=\"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) - ZappySys Blog\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/\" \/>\r\n<meta property=\"og:site_name\" content=\"ZappySys Blog\" \/>\r\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ZappySys\/\" \/>\r\n<meta property=\"article:published_time\" content=\"2023-03-30T17:17:30+00:00\" \/>\r\n<meta property=\"article:modified_time\" content=\"2023-03-30T17:18:58+00:00\" \/>\r\n<meta property=\"og:image\" content=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png\" \/>\r\n\t<meta property=\"og:image:width\" content=\"681\" \/>\r\n\t<meta property=\"og:image:height\" content=\"281\" \/>\r\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\r\n<meta name=\"author\" content=\"ZappySys\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/zappysys\/\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ZappySys\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/\",\"url\":\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/\",\"name\":\"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) | ZappySys Blog\",\"isPartOf\":{\"@id\":\"https:\/\/zappysys.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png\",\"datePublished\":\"2023-03-30T17:17:30+00:00\",\"dateModified\":\"2023-03-30T17:18:58+00:00\",\"author\":{\"@id\":\"https:\/\/zappysys.com\/blog\/#\/schema\/person\/2756c237457fbc95d82cb38962f81f82\"},\"description\":\"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) - ZappySys Blog\",\"breadcrumb\":{\"@id\":\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#primaryimage\",\"url\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png\",\"contentUrl\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png\",\"width\":681,\"height\":281,\"caption\":\"Informatica Command Task\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/zappysys.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/zappysys.com\/blog\/#website\",\"url\":\"https:\/\/zappysys.com\/blog\/\",\"name\":\"ZappySys Blog\",\"description\":\"SSIS \/ ODBC Drivers \/ API Connectors for JSON, XML, Azure, Amazon AWS, Salesforce, MongoDB and more\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/zappysys.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/zappysys.com\/blog\/#\/schema\/person\/2756c237457fbc95d82cb38962f81f82\",\"name\":\"ZappySys\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zappysys.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5c9be148088ba9b8af8e955c5f7c22b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5c9be148088ba9b8af8e955c5f7c22b5?s=96&d=mm&r=g\",\"caption\":\"ZappySys\"},\"sameAs\":[\"http:\/\/www.zappysys.com\/\",\"https:\/\/www.facebook.com\/ZappySys\/\",\"https:\/\/twitter.com\/https:\/\/twitter.com\/zappysys\/\"],\"url\":\"https:\/\/zappysys.com\/blog\/author\/admin\/\"}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) | ZappySys Blog","description":"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) - ZappySys Blog","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:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/","og_locale":"en_US","og_type":"article","og_title":"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) | ZappySys Blog","og_description":"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) - ZappySys Blog","og_url":"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/","og_site_name":"ZappySys Blog","article_author":"https:\/\/www.facebook.com\/ZappySys\/","article_published_time":"2023-03-30T17:17:30+00:00","article_modified_time":"2023-03-30T17:18:58+00:00","og_image":[{"width":681,"height":281,"url":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png","type":"image\/png"}],"author":"ZappySys","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/zappysys\/","twitter_misc":{"Written by":"ZappySys","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/","url":"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/","name":"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) | ZappySys Blog","isPartOf":{"@id":"https:\/\/zappysys.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#primaryimage"},"image":{"@id":"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#primaryimage"},"thumbnailUrl":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png","datePublished":"2023-03-30T17:17:30+00:00","dateModified":"2023-03-30T17:18:58+00:00","author":{"@id":"https:\/\/zappysys.com\/blog\/#\/schema\/person\/2756c237457fbc95d82cb38962f81f82"},"description":"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables) - ZappySys Blog","breadcrumb":{"@id":"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#primaryimage","url":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png","contentUrl":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2023\/03\/informatica-command-task.png","width":681,"height":281,"caption":"Informatica Command Task"},{"@type":"BreadcrumbList","@id":"https:\/\/zappysys.com\/blog\/export-create-json-file-informatica-sql-query-database-tables\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zappysys.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Export \/ Create JSON File in Informatica (from SQL Query \/ Database Tables)"}]},{"@type":"WebSite","@id":"https:\/\/zappysys.com\/blog\/#website","url":"https:\/\/zappysys.com\/blog\/","name":"ZappySys Blog","description":"SSIS \/ ODBC Drivers \/ API Connectors for JSON, XML, Azure, Amazon AWS, Salesforce, MongoDB and more","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zappysys.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/zappysys.com\/blog\/#\/schema\/person\/2756c237457fbc95d82cb38962f81f82","name":"ZappySys","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zappysys.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5c9be148088ba9b8af8e955c5f7c22b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5c9be148088ba9b8af8e955c5f7c22b5?s=96&d=mm&r=g","caption":"ZappySys"},"sameAs":["http:\/\/www.zappysys.com\/","https:\/\/www.facebook.com\/ZappySys\/","https:\/\/twitter.com\/https:\/\/twitter.com\/zappysys\/"],"url":"https:\/\/zappysys.com\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/10020"}],"collection":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/comments?post=10020"}],"version-history":[{"count":2,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/10020\/revisions"}],"predecessor-version":[{"id":10023,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/10020\/revisions\/10023"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/media\/10021"}],"wp:attachment":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/media?parent=10020"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/categories?post=10020"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/tags?post=10020"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}