{"id":742,"date":"2016-08-30T15:07:22","date_gmt":"2016-08-30T15:07:22","guid":{"rendered":"http:\/\/zappysys.com\/blog\/?p=742"},"modified":"2025-10-22T22:58:58","modified_gmt":"2025-10-22T22:58:58","slug":"create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection","status":"publish","type":"post","link":"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/","title":{"rendered":"How to create MongoDB documents (JSON, BSON) for loading in SSIS"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p><a href=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.png\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-2115 alignleft\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.png\" alt=\"\" width=\"88\" height=\"88\" \/><\/a><span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">In our previous article, we discussed how to\u00a0<a target=\"_blank\" rel=\"noopener\">load data into MongoDB (Insert, Update, or Upsert Mode)<\/a> with various options. <\/span>In this post, we will focus on creating a MongoDB Document for the load process. We will see how to produce BSON (MongoDB-specific JSON<span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">\u00a0that may include functions such as\u00a0<em>ObjectID and<\/em><\/span>\u00a0<em>ISODate<\/em>).<\/p>\n<p>This article assumes you have installed <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/\" target=\"_blank\" rel=\"noopener\">SSIS PowerPack<\/a> and watched the introduction videos of <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-json-generator-transform\/\" target=\"_blank\" rel=\"noopener\">SSIS JSON Generator Transform<\/a> and <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-mongodb-destination\/\" target=\"_blank\" rel=\"noopener\">MongoDB Destination Connector<\/a><\/p>\n<h2>Create MongoDB document Example (Produce JSON, BSON for Load)<\/h2>\n<p>Here is the screenshot, which shows how to fetch SQL Server data &gt; create a MongoDB document in JSON \/ BSON format, and load it into a MongoDB collection<\/p>\n<p>The high-level steps we performed are<\/p>\n<ol>\n<li>Used OLEDB Source to fetch data from SQL Server. Used a query like below\n<pre class=\"lang:tsql decode:true \">select CustomerID, 'ISODate(\"' + convert(varchar(30),getdate(),126) + '\")' as DOB from Customers<\/pre>\n<p>In the above query, you will notice that we are building some BSON fragments, which will be treated as raw values in the JSON generator. Also, we are using the convert function from SQL Server to produce an ISO date format (Style=126 will produce an ISO date)<\/li>\n<li>Used the <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-json-generator-transform\/\" target=\"_blank\" rel=\"noopener\">SSIS JSON Generator Transform<\/a> to produce a JSON document for each customer. Define a custom layout using the drag-and-drop interface. You can control how many documents you want to output using settings on Transform (Single document for all input rows or one document per row in the Main dataset)<\/li>\n<li>Load JSON documents coming from upstream into MongoDB using the <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-mongodb-destination\/\" target=\"_blank\" rel=\"noopener\">SSIS MongoDB Destination Connector<\/a>. We changed Action=Upsert and set ColumnsForLookup to CustomerID (Consider this as Primary Key or your Join Column to find existing document)<\/li>\n<li>On Target, we mapped __DOCUMENT__ rather than individual columns, so that we can load the full document.\n<div id=\"attachment_11582\" style=\"width: 775px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Sample-SSIS-Package-Create-MongoDB-Document-in-BSON-format-JSON-with-functions.-Update-or-Insert-Mode.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-11582\" class=\"size-full wp-image-11582\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Sample-SSIS-Package-Create-MongoDB-Document-in-BSON-format-JSON-with-functions.-Update-or-Insert-Mode.png\" alt=\"\" width=\"765\" height=\"625\" srcset=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Sample-SSIS-Package-Create-MongoDB-Document-in-BSON-format-JSON-with-functions.-Update-or-Insert-Mode.png 765w, https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Sample-SSIS-Package-Create-MongoDB-Document-in-BSON-format-JSON-with-functions.-Update-or-Insert-Mode-300x245.png 300w\" sizes=\"(max-width: 765px) 100vw, 765px\" \/><\/a><p id=\"caption-attachment-11582\" class=\"wp-caption-text\">Sample SSIS Package &#8211; Create MongoDB Document in BSON format (JSON with functions). Update or Insert Mode<\/p><\/div><\/li>\n<\/ol>\n<h2>Configure JSON Generator Transform &#8211; Create JSON Document<\/h2>\n<p>If you want to learn how to configure the\u00a0<a target=\"_blank\" rel=\"noopener\">SSIS JSON Generator Transform,<\/a>\u00a0then watch the video\u00a0<a target=\"_blank\" rel=\"noopener\">here.<\/a> Important thing to remember in the configuration is to check the <strong>Treat value of this column as Raw JSON<\/strong><\/p>\n<div id=\"attachment_11581\" style=\"width: 938px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Create-MongoDB-Document-in-JSON-or-BSON-format-Load-into-Collection-Upsert-Update-or-Insert.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-11581\" class=\"size-full wp-image-11581\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Create-MongoDB-Document-in-JSON-or-BSON-format-Load-into-Collection-Upsert-Update-or-Insert.png\" alt=\"\" width=\"928\" height=\"652\" srcset=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Create-MongoDB-Document-in-JSON-or-BSON-format-Load-into-Collection-Upsert-Update-or-Insert.png 928w, https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Create-MongoDB-Document-in-JSON-or-BSON-format-Load-into-Collection-Upsert-Update-or-Insert-300x211.png 300w, https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Create-MongoDB-Document-in-JSON-or-BSON-format-Load-into-Collection-Upsert-Update-or-Insert-768x540.png 768w\" sizes=\"(max-width: 928px) 100vw, 928px\" \/><\/a><p id=\"caption-attachment-11581\" class=\"wp-caption-text\">Create MongoDB Document in JSON or BSON format &#8211; Load into Collection (Upsert &#8211; Update or Insert)<\/p><\/div>\n<h2>Configure\u00a0MongoDB Destination &#8211; For Upsert\u00a0(Update or Insert Mode)<\/h2>\n<p><span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">By default, the\u00a0<a target=\"_blank\" rel=\"noopener\">SSIS MongoDB Destination Connector<\/a> performs an insert, but if you want to perform an Upsert (i.e., insert if not found, else update), you have to change a few settings.<\/span><\/p>\n<ol>\n<li>Change Operation to UpdateOrInsert<\/li>\n<li>Set ColumnsForLookup (e.g., in our case, it was just one CustomerID). If you have multiple columns for join, then use a comma-separated list (e.g., City, State, Zip)<\/li>\n<li>If you want to affect various documents if more than one match is found for the join criteria, then use multi=true as shown in the screenshot below (see LoadOptions )\n<div id=\"attachment_11580\" style=\"width: 1003px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Configure-SSIS-MongoDB-destination-for-Upsert-operation.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-11580\" class=\"size-full wp-image-11580\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Configure-SSIS-MongoDB-destination-for-Upsert-operation.png\" alt=\"\" width=\"993\" height=\"528\" srcset=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Configure-SSIS-MongoDB-destination-for-Upsert-operation.png 993w, https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Configure-SSIS-MongoDB-destination-for-Upsert-operation-300x160.png 300w, https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2016\/08\/Configure-SSIS-MongoDB-destination-for-Upsert-operation-768x408.png 768w\" sizes=\"(max-width: 993px) 100vw, 993px\" \/><\/a><p id=\"caption-attachment-11580\" class=\"wp-caption-text\">Configure the SSIS MongoDB destination for the Upsert operation<\/p><\/div><\/li>\n<\/ol>\n<div class=\"mceTemp\"><\/div>\n<h2>Conclusion<\/h2>\n<p>In this post, you have seen how easy it is to create MongoDB Documents in JSON \/ BSON format and load them into a MongoDB collection using <a target=\"_blank\" rel=\"noopener\">ZappySys SSIS PowerPack<\/a>. This innovative drag-and-drop approach can simplify the entire ETL process if you are in a time crunch and don&#8217;t know scripting languages.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In our previous article, we discussed how to\u00a0load data into MongoDB (Insert, Update, or Upsert Mode) with various options. In this post, we will focus on creating a MongoDB Document for the load process. We will see how to produce BSON (MongoDB-specific JSON\u00a0that may include functions such as\u00a0ObjectID and\u00a0ISODate). This article assumes you have [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2115,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[131],"tags":[121,139,6,46,12,92,90],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\r\n<title>How to create MongoDB documents (JSON, BSON) for loading in SSIS | ZappySys Blog<\/title>\r\n<meta name=\"description\" content=\"Learn how to create MongoDB documents in JSON or BSON format in few clicks. Load documents into MongoDB Collection (Update \/ Insert \/ Upsert Mode ).\" \/>\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\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"How to create MongoDB documents (JSON, BSON) for loading in SSIS | ZappySys Blog\" \/>\r\n<meta property=\"og:description\" content=\"Learn how to create MongoDB documents in JSON or BSON format in few clicks. Load documents into MongoDB Collection (Update \/ Insert \/ Upsert Mode ).\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/\" \/>\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=\"2016-08-30T15:07:22+00:00\" \/>\r\n<meta property=\"article:modified_time\" content=\"2025-10-22T22:58:58+00:00\" \/>\r\n<meta property=\"og:image\" content=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.png\" \/>\r\n\t<meta property=\"og:image:width\" content=\"88\" \/>\r\n\t<meta property=\"og:image:height\" content=\"88\" \/>\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\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/\",\"url\":\"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/\",\"name\":\"How to create MongoDB documents (JSON, BSON) for loading in SSIS | ZappySys Blog\",\"isPartOf\":{\"@id\":\"https:\/\/zappysys.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.png\",\"datePublished\":\"2016-08-30T15:07:22+00:00\",\"dateModified\":\"2025-10-22T22:58:58+00:00\",\"author\":{\"@id\":\"https:\/\/zappysys.com\/blog\/#\/schema\/person\/2756c237457fbc95d82cb38962f81f82\"},\"description\":\"Learn how to create MongoDB documents in JSON or BSON format in few clicks. Load documents into MongoDB Collection (Update \/ Insert \/ Upsert Mode ).\",\"breadcrumb\":{\"@id\":\"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#primaryimage\",\"url\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.png\",\"contentUrl\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.png\",\"width\":88,\"height\":88},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/zappysys.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create MongoDB documents (JSON, BSON) for loading in SSIS\"}]},{\"@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":"How to create MongoDB documents (JSON, BSON) for loading in SSIS | ZappySys Blog","description":"Learn how to create MongoDB documents in JSON or BSON format in few clicks. Load documents into MongoDB Collection (Update \/ Insert \/ Upsert Mode ).","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\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/","og_locale":"en_US","og_type":"article","og_title":"How to create MongoDB documents (JSON, BSON) for loading in SSIS | ZappySys Blog","og_description":"Learn how to create MongoDB documents in JSON or BSON format in few clicks. Load documents into MongoDB Collection (Update \/ Insert \/ Upsert Mode ).","og_url":"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/","og_site_name":"ZappySys Blog","article_author":"https:\/\/www.facebook.com\/ZappySys\/","article_published_time":"2016-08-30T15:07:22+00:00","article_modified_time":"2025-10-22T22:58:58+00:00","og_image":[{"width":88,"height":88,"url":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.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\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/","url":"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/","name":"How to create MongoDB documents (JSON, BSON) for loading in SSIS | ZappySys Blog","isPartOf":{"@id":"https:\/\/zappysys.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#primaryimage"},"image":{"@id":"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#primaryimage"},"thumbnailUrl":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.png","datePublished":"2016-08-30T15:07:22+00:00","dateModified":"2025-10-22T22:58:58+00:00","author":{"@id":"https:\/\/zappysys.com\/blog\/#\/schema\/person\/2756c237457fbc95d82cb38962f81f82"},"description":"Learn how to create MongoDB documents in JSON or BSON format in few clicks. Load documents into MongoDB Collection (Update \/ Insert \/ Upsert Mode ).","breadcrumb":{"@id":"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#primaryimage","url":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.png","contentUrl":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2017\/08\/mongodb-logo.png","width":88,"height":88},{"@type":"BreadcrumbList","@id":"https:\/\/zappysys.com\/blog\/create-mongodb-documents-ssis-json-bson-load-update-insert-upsert-collection\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zappysys.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create MongoDB documents (JSON, BSON) for loading in SSIS"}]},{"@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\/742"}],"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=742"}],"version-history":[{"count":11,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/742\/revisions"}],"predecessor-version":[{"id":11583,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/742\/revisions\/11583"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/media\/2115"}],"wp:attachment":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/media?parent=742"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/categories?post=742"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/tags?post=742"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}