{"id":80971,"date":"2017-12-14T10:58:13","date_gmt":"2017-12-14T10:58:13","guid":{"rendered":"http:\/\/www.esri.com\/arcgis-blog\/products\/product\/uncategorized\/improved-typescript-development-with-arcgis-api-for-javascript\/"},"modified":"2018-03-26T21:15:49","modified_gmt":"2018-03-26T21:15:49","slug":"improved-typescript-development-with-arcgis-api-for-javascript","status":"publish","type":"blog","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript","title":{"rendered":"Improved TypeScript development with ArcGIS API for JavaScript"},"author":5981,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":""},"categories":[22941],"tags":[35031,35041,24921,34861],"industry":[],"product":[36831,36601],"class_list":["post-80971","blog","type-blog","status-publish","format-standard","hentry","category-mapping","tag-4-6","tag-arcgis-api-for-javascript-4-6","tag-javascript","tag-typescript","product-js-api-arcgis","product-developers"],"acf":{"short_description":"The TypeScript declaration file for the ArcGIS API for JavaScript contains type information specific for the API. You can learn more abou...","flexible_content":[{"acf_fc_layout":"content","content":"<p>The <a href=\"https:\/\/www.typescriptlang.org\/docs\/handbook\/declaration-files\/introduction.html\">TypeScript declaration file<\/a> for the <a href=\"https:\/\/developers.arcgis.com\/javascript\/\">ArcGIS API for JavaScript<\/a> contains type information specific for the API. You can learn more about how to install this file from the <a href=\"https:\/\/developers.arcgis.com\/javascript\/latest\/guide\/typescript-setup\/index.html#install-the-arcgis-api-for-javascript-typings\">TypeScript set up guide page<\/a> or on <a href=\"https:\/\/github.com\/Esri\/jsapi-resources\/tree\/master\/4.x\/typescript\">GitHub<\/a>.<br \/>\n<!--more--><br \/>\nThe version 4.6 introduces several improvements:<\/p>\n<li>Added <a href=\"http:\/\/usejsdoc.org\/about-getting-started.html\">JSDoc<\/a> definitions for classes, methods and properties: Classes and their members are now decorated with JSDoc comments. An integrated development environment (IDE) like <a href=\"https:\/\/code.visualstudio.com\/\">Visual Studio Code<\/a>, now shows  an overview of the documentation while you type your code or when you hover a class, property or a method.<\/li>\n<p><img decoding=\"async\" src=\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2017\/12\/typings-property.png\" alt=\"typings on property\" \/><\/p>\n<p>The documentation also includes a link to directly open the API reference at the relevant page.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2017\/12\/typings-read-more.png\" alt=\"read more\" \/><\/p>\n<li>Read-only properties: API&#8217;s read-only properties are now marked with the <em><strong>readonly<\/strong><\/em> modifier in the declaration file. These properties are also no longer available as constructor parameters.<\/li>\n<li>Autocasting for constructor parameters: We enhanced the typings to improve custom autocasting for constructor parameters (most notably named basemaps and symbol colors).<\/li>\n<pre>\n<span style=\"color: #333;font-weight: bold\">const<\/span> map = <span style=\"color: #333;font-weight: bold\">new<\/span> WebMap({\n  <span style=\"color: #998;font-style: italic\">\/\/ autocasts to a Basemap object<\/span>\n  basemap: <span style=\"color: #d14\">\"topo\"<\/span>,\n  layers: [\n    <span style=\"color: #333;font-weight: bold\">new<\/span> FeatureLayer({\n      <span style=\"color: #998;font-style: italic\">\/\/ autocasts to a PopupTemplate object<\/span>\n      popupTemplate: {\n        content: <span style=\"color: #d14\">\"{*}\"<\/span>\n      }\n    })\n  ]\n});\n<\/pre>\n<pre>\n<span style=\"color: #333;font-weight: bold\">const<\/span> symbol = <span style=\"color: #333;font-weight: bold\">new<\/span> SimpleFillSymbol({\n  <span style=\"color: #998;font-style: italic\">\/\/ autocasts to a Color object<\/span>\n  color: <span style=\"color: #d14\">\"red\"<\/span>,\n  <span style=\"color: #998;font-style: italic\">\/\/ autocasts to a SimpleLineSymbol object<\/span>\n  outline: {\n    style: <span style=\"color: #d14\">\"solid\"<\/span>\n  }\n});\n<\/pre>\n<li>Typing improvement to take advantage of discriminated unions: <a href=\"https:\/\/developers.arcgis.com\/javascript\/latest\/api-reference\/esri-geometry-Geometry.html\">Geometry<\/a>, <a href=\"https:\/\/developers.arcgis.com\/javascript\/latest\/api-reference\/esri-symbols-Symbol.html\">Symbol<\/a> and <a href=\"https:\/\/developers.arcgis.com\/javascript\/latest\/api-reference\/esri-renderers-Renderer.html\">Renderer<\/a> classes now have their <em><strong>type<\/strong><\/em> property specified with their values. This lets you use the powerful advanced typing pattern, <a href=\"https:\/\/www.typescriptlang.org\/docs\/handbook\/advanced-types.html#discriminated-unions\">discriminated union<\/a>. In addition, a new module<a href=\"https:\/\/developers.arcgis.com\/javascript\/latest\/api-reference\/esri-geometry.html\"> esri\/geometry<\/a> lets you import all the geometry classes including a discriminated union <em><strong>Geometry<\/strong><\/em> type.<\/li>\n<p><\/p>\n<pre>\n<span style=\"color: #333;font-weight: bold\">import<\/span> { Geometry } <span style=\"color: #333;font-weight: bold\">from<\/span> <span style=\"color: #d14\">\"esri\/geometry\"<\/span>;\n\n<span><span style=\"color: #333;font-weight: bold\">function<\/span> <span style=\"color: #900;font-weight: bold\">logGeometry<\/span>(<span>geometry: geometry<\/span>): <span style=\"color: #900;font-weight: bold\">void<\/span> <\/span>{\n  <span style=\"color: #998;font-style: italic\">\/\/ Geometry is a union of all the geometries<\/span>\n  <span style=\"color: #998;font-style: italic\">\/\/ discriminate on the 'type' property<\/span>\n  <span style=\"color: #333;font-weight: bold\">if<\/span> (geometry.type === <span style=\"color: #d14\">\"point\"<\/span>) {\n    <span style=\"color: #998;font-style: italic\">\/\/ new at 4.6, the compiler knows the geometry is a Point instance<\/span>\n    <span style=\"color: #0086b3\">console<\/span>.log(<span style=\"color: #d14\">\"point coords: \"<\/span>, geometry.x, geometry.y, geometry.z);\n  }\n  <span style=\"color: #333;font-weight: bold\">else<\/span> {\n    <span style=\"color: #998;font-style: italic\">\/\/ the compiler knows the geometry must be a `Extent | Polygon | Multipoint | Polyline`<\/span>\n    <span style=\"color: #0086b3\">console<\/span>.log(<span style=\"color: #d14\">\"The value is a geometry, but isn't a point.\"<\/span>)\n  }\n}\n<\/pre>\n<p>We hope these improvements will make you more productive in your application development.<\/p>\n"}],"authors":[{"ID":5981,"user_firstname":"Undral","user_lastname":"Batsukh","nickname":"Undral","user_nicename":"undr3986","display_name":"Undral Batsukh","user_email":"ubatsukh@esri.com","user_url":"","user_registered":"2018-03-02 00:17:50","user_description":"Undral is a Product Engineer at Esri, working on the ArcGIS Maps SDK for JavaScript.","user_avatar":"<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/c1405160351c3e4722c0c72071122fe10e812710bb886abf9e09701c7c219563?s=96&#038;d=blank&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/c1405160351c3e4722c0c72071122fe10e812710bb886abf9e09701c7c219563?s=192&#038;d=blank&#038;r=g 2x' class='avatar avatar-96 photo' height='96' width='96' loading='lazy' decoding='async'\/>"}]},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v25.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Improved TypeScript development with ArcGIS API for JavaScript<\/title>\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.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Improved TypeScript development with ArcGIS API for JavaScript\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript\" \/>\n<meta property=\"og:site_name\" content=\"ArcGIS Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/esrigis\/\" \/>\n<meta property=\"article:modified_time\" content=\"2018-03-26T21:15:49+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@ESRI\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript\"},\"author\":{\"name\":\"Undral Batsukh\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/e42c26b3a6a3ad517ec6148b1f8d4f6a\"},\"headline\":\"Improved TypeScript development with ArcGIS API for JavaScript\",\"datePublished\":\"2017-12-14T10:58:13+00:00\",\"dateModified\":\"2018-03-26T21:15:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript\"},\"wordCount\":8,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"keywords\":[\"4.6\",\"ArcGIS API for JavaScript 4.6\",\"JavaScript\",\"TypeScript\"],\"articleSection\":[\"Mapping\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript\",\"name\":\"Improved TypeScript development with ArcGIS API for JavaScript\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\"},\"datePublished\":\"2017-12-14T10:58:13+00:00\",\"dateModified\":\"2018-03-26T21:15:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.esri.com\/arcgis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Improved TypeScript development with ArcGIS API for JavaScript\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"name\":\"ArcGIS Blog\",\"description\":\"Get insider info from Esri product teams\",\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\",\"name\":\"Esri\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"width\":400,\"height\":400,\"caption\":\"Esri\"},\"image\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/esrigis\/\",\"https:\/\/x.com\/ESRI\",\"https:\/\/www.linkedin.com\/company\/5311\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/e42c26b3a6a3ad517ec6148b1f8d4f6a\",\"name\":\"Undral Batsukh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c1405160351c3e4722c0c72071122fe10e812710bb886abf9e09701c7c219563?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c1405160351c3e4722c0c72071122fe10e812710bb886abf9e09701c7c219563?s=96&d=blank&r=g\",\"caption\":\"Undral Batsukh\"},\"description\":\"Undral is a Product Engineer at Esri, working on the ArcGIS Maps SDK for JavaScript.\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/author\/undr3986\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Improved TypeScript development with ArcGIS API for JavaScript","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.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript","og_locale":"en_US","og_type":"article","og_title":"Improved TypeScript development with ArcGIS API for JavaScript","og_url":"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript","og_site_name":"ArcGIS Blog","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","article_modified_time":"2018-03-26T21:15:49+00:00","twitter_card":"summary_large_image","twitter_site":"@ESRI","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript#article","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript"},"author":{"name":"Undral Batsukh","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/e42c26b3a6a3ad517ec6148b1f8d4f6a"},"headline":"Improved TypeScript development with ArcGIS API for JavaScript","datePublished":"2017-12-14T10:58:13+00:00","dateModified":"2018-03-26T21:15:49+00:00","mainEntityOfPage":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript"},"wordCount":8,"commentCount":0,"publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"keywords":["4.6","ArcGIS API for JavaScript 4.6","JavaScript","TypeScript"],"articleSection":["Mapping"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript","url":"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript","name":"Improved TypeScript development with ArcGIS API for JavaScript","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#website"},"datePublished":"2017-12-14T10:58:13+00:00","dateModified":"2018-03-26T21:15:49+00:00","breadcrumb":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/mapping\/mapping\/improved-typescript-development-with-arcgis-api-for-javascript#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/arcgis-blog\/"},{"@type":"ListItem","position":2,"name":"Improved TypeScript development with ArcGIS API for JavaScript"}]},{"@type":"WebSite","@id":"https:\/\/www.esri.com\/arcgis-blog\/#website","url":"https:\/\/www.esri.com\/arcgis-blog\/","name":"ArcGIS Blog","description":"Get insider info from Esri product teams","publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization","name":"Esri","url":"https:\/\/www.esri.com\/arcgis-blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","width":400,"height":400,"caption":"Esri"},"image":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/esrigis\/","https:\/\/x.com\/ESRI","https:\/\/www.linkedin.com\/company\/5311\/"]},{"@type":"Person","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/e42c26b3a6a3ad517ec6148b1f8d4f6a","name":"Undral Batsukh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c1405160351c3e4722c0c72071122fe10e812710bb886abf9e09701c7c219563?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c1405160351c3e4722c0c72071122fe10e812710bb886abf9e09701c7c219563?s=96&d=blank&r=g","caption":"Undral Batsukh"},"description":"Undral is a Product Engineer at Esri, working on the ArcGIS Maps SDK for JavaScript.","url":"https:\/\/www.esri.com\/arcgis-blog\/author\/undr3986"}]}},"text_date":"December 14, 2017","author_name":"Undral Batsukh","author_page":"https:\/\/www.esri.com\/arcgis-blog\/author\/undr3986","custom_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2025\/08\/Newsroom-Keyart-Wide-1920-x-1080.jpg","primary_product":"ArcGIS Maps SDK for JavaScript","tag_data":[{"term_id":35031,"name":"4.6","slug":"4-6","term_group":0,"term_taxonomy_id":35031,"taxonomy":"post_tag","description":"","parent":0,"count":4,"filter":"raw"},{"term_id":35041,"name":"ArcGIS API for JavaScript 4.6","slug":"arcgis-api-for-javascript-4-6","term_group":0,"term_taxonomy_id":35041,"taxonomy":"post_tag","description":"","parent":0,"count":1,"filter":"raw"},{"term_id":24921,"name":"JavaScript","slug":"javascript","term_group":0,"term_taxonomy_id":24921,"taxonomy":"post_tag","description":"","parent":0,"count":151,"filter":"raw"},{"term_id":34861,"name":"TypeScript","slug":"typescript","term_group":0,"term_taxonomy_id":34861,"taxonomy":"post_tag","description":"","parent":0,"count":6,"filter":"raw"}],"category_data":[{"term_id":22941,"name":"Mapping","slug":"mapping","term_group":0,"term_taxonomy_id":22941,"taxonomy":"category","description":"","parent":0,"count":2702,"filter":"raw"}],"product_data":[{"term_id":36831,"name":"ArcGIS Maps SDK for JavaScript","slug":"js-api-arcgis","term_group":0,"term_taxonomy_id":36831,"taxonomy":"product","description":"","parent":36601,"count":363,"filter":"raw"},{"term_id":36601,"name":"Developers","slug":"developers","term_group":0,"term_taxonomy_id":36601,"taxonomy":"product","description":"","parent":0,"count":765,"filter":"raw"}],"primary_product_link":"https:\/\/www.esri.com\/arcgis-blog\/?s=#&products=js-api-arcgis","_links":{"self":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/80971","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog"}],"about":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/types\/blog"}],"author":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/users\/5981"}],"replies":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/comments?post=80971"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/80971\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/media?parent=80971"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/categories?post=80971"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/tags?post=80971"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/industry?post=80971"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/product?post=80971"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}