{"id":187411,"date":"2014-10-31T20:49:24","date_gmt":"2014-11-01T03:49:24","guid":{"rendered":"http:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=187411"},"modified":"2018-12-18T09:54:24","modified_gmt":"2018-12-18T17:54:24","slug":"working-with-geojson-using-arcgis-runtime-sdk-for-java","status":"publish","type":"blog","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java","title":{"rendered":"Working with GeoJSON using ArcGIS Runtime SDK for Java"},"author":3731,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":""},"categories":[37511],"tags":[23451,25721,23471],"industry":[],"product":[36901,36601],"class_list":["post-187411","blog","type-blog","status-publish","format-standard","hentry","category-sharing-collaboration","tag-arcgis-runtime","tag-geojson","tag-java","product-api-java","product-developers"],"acf":{"short_description":"GeoJSON is an open standard for representing geographic features and their attributes. Based on the JSON (JavaScript Object Notation) format,","flexible_content":[{"acf_fc_layout":"content","content":"<p><a href=\"http:\/\/geojson.org\/\">GeoJSON<\/a>\u00a0is an open standard for representing geographic features and their attributes. Based on the JSON (JavaScript Object Notation) format, GeoJSON inherits the advantages of being readable, simple and lightweight. Many GIS technologies and services now support GeoJSON.<\/p>\n<p>Esri has supported the GeoJSON standard for many years through various solutions and initiatives such as\u00a0<a href=\"http:\/\/blogs.esri.com\/esri\/arcgis\/2014\/02\/10\/preview-of-open-data\/\">the ArcGIS Open Data initiative<\/a>\u00a0and a number of\u00a0<a href=\"http:\/\/blogs.esri.com\/esri\/arcgis\/2013\/07\/31\/new-esri-open-source-javascript-projects-leaflet-geoservices-js-terraformer-pushlet\/#esri-leaflet\">Esri\u2019s Open Source Javascript projects<\/a>, just to name a few.<span id=\"more-37820\"><\/span><\/p>\n<p>At its core, GeoJSON defines a type called Feature. A Feature has a geometry and optional properties. The geometry types supported here are Point, LineString, Polygon, MultiPoint, MultiLineString, MultiPolygon. Properties are basically name-value pairs. A set of features is represented by a FeatureCollection.<\/p>\n<p>The following example represents the Los Angeles airport as a GeoJSON Feature. The feature is of type Point with a long-lat value of (-118.40, 33.93). The airport code LAX and its elevation 38 (meters) are specified as properties.<\/p>\n<pre> { \r\n     \"type\": \"Feature\", \r\n     \"geometry\": {\"type\": \"Point\", \"coordinates\": [-118.40, 33.93]},\r\n     \"properties\":\r\n         { \"code\": \"LAX\", \r\n           \"elevation\": 38, \r\n         } \r\n}<\/pre>\n<p><strong>Mapping GeoJSON Features to ArcGIS Runtime Java Features<\/strong><\/p>\n<p>The structure of a Feature in ArcGIS Runtime is very similar to that of a GeoJSON Feature \u2013 it consists of a Geometry and an optional map of name-value pairs called attributes. The properties of a GeoJSON feature can be directly mapped to the attributes of a ArcGIS Runtime feature. The mapping between the GeoJSON geometry and ArcGIS Runtime geometry is as per the following table:<\/p>\n<div id=\"attachment_38884\" class=\"wp-caption alignnone\"><a href=\"http:\/\/blogs.esri.com\/esri\/arcgis\/files\/2014\/05\/geojson_runtime_table1.png\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-38884 \" src=\"http:\/\/blogs.esri.com\/esri\/arcgis\/files\/2014\/05\/geojson_runtime_table1.png\" alt=\"\" width=\"525\" height=\"201\" \/><\/a><\/p>\n<p class=\"wp-caption-text\">Geometry types of GeoJSON and corresponding type in ArcGIS Runtime<\/p>\n<\/div>\n<p>Let\u2019s get into a very simple yet practical example of ingesting GeoJSON using Java.<\/p>\n<p><strong>Adding GeoJSON features to an ArcGIS Runtime program<\/strong><\/p>\n<p>To consume GeoJSON in your Runtime Java applications, you\u2019ll parse the GeoJSON data and create ArcGIS Runtime features from it. We have published an example of this for you on GitHub at\u00a0<a href=\"https:\/\/github.com\/Esri\/arcgis-runtime-demo-java\/tree\/master\/geojson\" target=\"_blank\" rel=\"noopener\">https:\/\/github.com\/Esri\/arcgis-runtime-demo-java\/tree\/master\/geojson<\/a><\/p>\n<p>In this case, the GeoJsonParser object is used to parse GeoJSON data residing in a file and return the data as a collection of ArcGIS Runtime features. Though a file is used in this example, the source of the GeoJSON could be any sort of input stream that your Java program could read. The example below shows how to use the parser.<\/p>\n<pre>\/\/ create an instance of the parser\r\nGeoJsonParser geoJsonParser = new GeoJsonParser();\r\n\r\n\/\/ parse the input file in GeoJSON format\r\nList features = geoJsonParser.parseFeatures(\/path\/geojson_file);<\/pre>\n<p>After the GeoJSON data is parsed into ArcGIS Runtime features, they can be added to a ArcGIS Runtime GraphicsLayer.<\/p>\n<pre>\/\/ add parsed features to a layer\r\nGraphicsLayer graphicsLayer = new GraphicsLayer();\r\n\r\nfor (Feature f : features) {\r\n  graphicsLayer.addGraphic(new Graphic(f.getGeometry(), f.getSymbol(), f.getAttributes()));\r\n}<\/pre>\n<p>That\u2019s about all there is to it. As we mentioned previously, we invite you to get the full source code for this example from\u00a0<a title=\"GitHub\" href=\"https:\/\/github.com\/Esri\/arcgis-runtime-demo-java\/tree\/master\/geojson\" target=\"_blank\" rel=\"noopener\">GitHub<\/a>.<\/p>\n<p><em>Authored by Vijay Gandhi\u00a0<\/em><\/p>\n"}],"authors":[{"ID":3731,"user_firstname":"Eric","user_lastname":"Bader","nickname":"eric906","user_nicename":"eric906","display_name":"Eric Bader","user_email":"ebader@esri.com","user_url":"","user_registered":"2018-03-02 00:15:23","user_description":"","user_avatar":"<img alt='' src='https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&#038;d=blank&#038;r=g' srcset='https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=192&#038;d=blank&#038;r=g 2x' class='avatar avatar-96 photo' height='96' width='96' loading='lazy' decoding='async'\/>"}],"related_articles":"","card_image":false,"wide_image":false},"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>Working with GeoJSON using ArcGIS Runtime SDK for Java<\/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\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Working with GeoJSON using ArcGIS Runtime SDK for Java\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java\" \/>\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-12-18T17:54:24+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\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java\"},\"author\":{\"name\":\"Eric Bader\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/60072798eba14df433cd17dd23184ad9\"},\"headline\":\"Working with GeoJSON using ArcGIS Runtime SDK for Java\",\"datePublished\":\"2014-11-01T03:49:24+00:00\",\"dateModified\":\"2018-12-18T17:54:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java\"},\"wordCount\":9,\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"keywords\":[\"ArcGIS Runtime\",\"GeoJSON\",\"Java\"],\"articleSection\":[\"Sharing and Collaboration\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java\",\"name\":\"Working with GeoJSON using ArcGIS Runtime SDK for Java\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\"},\"datePublished\":\"2014-11-01T03:49:24+00:00\",\"dateModified\":\"2018-12-18T17:54:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.esri.com\/arcgis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Working with GeoJSON using ArcGIS Runtime SDK for Java\"}]},{\"@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\/60072798eba14df433cd17dd23184ad9\",\"name\":\"Eric Bader\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&d=blank&r=g\",\"caption\":\"Eric Bader\"},\"sameAs\":[\"https:\/\/x.com\/ECBader\"],\"url\":\"\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Working with GeoJSON using ArcGIS Runtime SDK for Java","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\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java","og_locale":"en_US","og_type":"article","og_title":"Working with GeoJSON using ArcGIS Runtime SDK for Java","og_url":"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java","og_site_name":"ArcGIS Blog","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","article_modified_time":"2018-12-18T17:54:24+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\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java#article","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java"},"author":{"name":"Eric Bader","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/60072798eba14df433cd17dd23184ad9"},"headline":"Working with GeoJSON using ArcGIS Runtime SDK for Java","datePublished":"2014-11-01T03:49:24+00:00","dateModified":"2018-12-18T17:54:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java"},"wordCount":9,"publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"keywords":["ArcGIS Runtime","GeoJSON","Java"],"articleSection":["Sharing and Collaboration"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java","url":"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java","name":"Working with GeoJSON using ArcGIS Runtime SDK for Java","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#website"},"datePublished":"2014-11-01T03:49:24+00:00","dateModified":"2018-12-18T17:54:24+00:00","breadcrumb":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/api-java\/sharing-collaboration\/working-with-geojson-using-arcgis-runtime-sdk-for-java#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/arcgis-blog\/"},{"@type":"ListItem","position":2,"name":"Working with GeoJSON using ArcGIS Runtime SDK for Java"}]},{"@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\/60072798eba14df433cd17dd23184ad9","name":"Eric Bader","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d504fd8c71a3cfdb5141d911e6f6e96965093737560ec672afc0167aee81f45c?s=96&d=blank&r=g","caption":"Eric Bader"},"sameAs":["https:\/\/x.com\/ECBader"],"url":""}]}},"text_date":"October 31, 2014","author_name":"Eric Bader","author_page":false,"custom_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2025\/08\/Newsroom-Keyart-Wide-1920-x-1080.jpg","primary_product":"ArcGIS Runtime SDK for Java","tag_data":[{"term_id":23451,"name":"ArcGIS Runtime","slug":"arcgis-runtime","term_group":0,"term_taxonomy_id":23451,"taxonomy":"post_tag","description":"","parent":0,"count":91,"filter":"raw"},{"term_id":25721,"name":"GeoJSON","slug":"geojson","term_group":0,"term_taxonomy_id":25721,"taxonomy":"post_tag","description":"","parent":0,"count":10,"filter":"raw"},{"term_id":23471,"name":"Java","slug":"java","term_group":0,"term_taxonomy_id":23471,"taxonomy":"post_tag","description":"","parent":0,"count":19,"filter":"raw"}],"category_data":[{"term_id":37511,"name":"Sharing and Collaboration","slug":"sharing-collaboration","term_group":0,"term_taxonomy_id":37511,"taxonomy":"category","description":"","parent":0,"count":425,"filter":"raw"}],"product_data":[{"term_id":36901,"name":"ArcGIS Runtime SDK for Java","slug":"api-java","term_group":0,"term_taxonomy_id":36901,"taxonomy":"product","description":"","parent":36601,"count":59,"filter":"raw"},{"term_id":36601,"name":"Developers","slug":"developers","term_group":0,"term_taxonomy_id":36601,"taxonomy":"product","description":"","parent":0,"count":767,"filter":"raw"}],"primary_product_link":"https:\/\/www.esri.com\/arcgis-blog\/?s=#&products=api-java","_links":{"self":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/187411","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\/3731"}],"replies":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/comments?post=187411"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/187411\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/media?parent=187411"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/categories?post=187411"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/tags?post=187411"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/industry?post=187411"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/product?post=187411"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}