{"id":46575,"date":"2018-10-18T00:00:00","date_gmt":"2018-10-18T07:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/using-maven-to-develop-griddb-applications\/"},"modified":"2025-11-13T12:54:38","modified_gmt":"2025-11-13T20:54:38","slug":"using-maven-to-develop-griddb-applications","status":"publish","type":"post","link":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/using-maven-to-develop-griddb-applications\/","title":{"rendered":"Using Maven to Develop GridDB Applications"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>In this post, we will go through common steps involved in configuring <a href=https:\/\/maven.apache.org\/>Maven<\/a> for a project that uses the GridDB Java API.<br \/>\nThis blog assumes you have both GridDB and Maven installed correctly. If you do not yet have GridDB installed, you can refer to the beginning portion of <a title=\"Installing GridDB-Raspberry Pi Tutorial: Sending Thermal Data to GridDB via the KairosDB Connector\" href=\"https:\/\/griddb.net\/en\/blog\/raspberry-pi-tutorial-sending-thermal-data-to-griddb-via-the-kairosdb-connector\/\">this<\/a> blog. Maven can be installed using <a href=https:\/\/www.javahelps.com\/2017\/10\/install-apache-maven-on-linux.html>this method<\/a>.<\/p>\n<div id=\"toc-block\" style=\"background: #f9f9f9 none repeat scroll 0 0; border: 1px solid #aaa; padding: 20px; width: auto; display: table; margin-bottom: 1em;\">\n<h5 id=\"toc\">Table of Contents<\/h5>\n<div class=\"toc_container\">\n<ul style=\"list-style-type: none !important;\">\n<li style=\"list-style-type: none;\">\n<ul style=\"list-style-type: none !important;\">\n<li>1 \u00c2\u00a0\u00c2\u00a0 <a href=\"#connector-gridstore\">Installing the GridDB Connector<\/a><\/li>\n<li>2 \u00c2\u00a0\u00c2\u00a0 <a href=\"#pom-file\">Creating a POM file<\/a><\/li>\n<li>3 \u00c2\u00a0\u00c2\u00a0 <a href=\"#connection-griddb\">Connecting to GridDB<\/a><\/li>\n<li>4 \u00c2\u00a0\u00c2\u00a0 <a href=\"#griddb-maven\">Running the project with Maven<\/a><\/li>\n<li>5 \u00c2\u00a0\u00c2\u00a0 <a href=\"#conclusion\">References<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/div>\n<\/div>\n<h2 id=\"connector-gridstore\">Installing the GridDB Jar<\/h2>\n<p>First, you need to install gridstore.jar into your local Maven repository.<\/p>\n<pre class=\"prettyprint\">mvn install:install-file -Dfile=\/usr\/share\/java\/gridstore.jar -DgroupId=com.toshiba.mwcloud \n    -DartifactId=gs -Dversion=4.0 -Dpackaging=jar\n<\/pre>\n<h2 id=\"setting-up-project\">Create Your Project<\/h2>\n<p>For this sample project we&#8217;ll use the Sample1.java which is used in many of the GridDB blogs and tutorials. We will create the Maven POM file, &#8220;pom.xml&#8221; which configures the project. If you&#8217;re familiar with Maven POM files already, the only GridDB specific portion is adding the dependency:<\/p>\n<pre class=\"prettyprint\">    &lt;packaging&gt;jar&lt;\/packaging&gt;\n &lt;dependencies&gt;\n        &lt;dependency&gt;\n        &lt;groupId&gt;com.toshiba.mwcloud&lt;\/groupId&gt;\n        &lt;artifactId&gt;gs&lt;\/artifactId&gt;\n        &lt;version&gt;4.0&lt;\/version&gt;\n&lt;\/dependency&gt;\n<\/pre>\n<p>The full pom.xml will look like this:<\/p>\n<pre class=\"prettyprint\">\n&lt;project  xmlns_xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\n  xsi_schemaLocation=\"http:\/\/maven.apache.org\/POM\/4.0.0 http:\/\/maven.apache.org\/xsd\/maven-4.0.0.xsd\"&gt;\n  &lt;modelVersion&gt;4.0.0&lt;\/modelVersion&gt;\n  &lt;groupId&gt;net.griddb.sample.gsSample&lt;\/groupId&gt;\n  &lt;artifactId&gt;Sample1&lt;\/artifactId&gt;\n  &lt;version&gt;0.0.1&lt;\/version&gt;\n  &lt;packaging&gt;jar&lt;\/packaging&gt;\n  &lt;name&gt;Sample1&lt;\/name&gt;\n    &lt;url&gt;http:\/\/maven.apache.org&lt;\/url&gt;\n    &lt;properties&gt;\n    &lt;project.build.sourceEncoding&gt;UTF-8&lt;\/project.build.sourceEncoding&gt;\n    &lt;\/properties&gt;\n    &lt;dependencies&gt;\n        &lt;dependency&gt;\n        &lt;groupId&gt;com.toshiba.mwcloud&lt;\/groupId&gt;\n        &lt;artifactId&gt;gs&lt;\/artifactId&gt;\n        &lt;version&gt;4.0&lt;\/version&gt;\n        &lt;\/dependency&gt;\n    &lt;\/dependencies&gt;\n&lt;\/project&gt;\n<\/pre>\n<p>Your POM file should now be set up correctly to run Maven and should be placed in a separate directory that we will use to organize the project such as &#8220;mavenSample&#8221;. Inside the base level directory there will be the pom that was just created and you will need to create a new directory structure and download <code>Sample1.java<\/code>.<\/p>\n<pre>\n$ mkdir -p src\/main\/java\/net\/griddb\/sample\/gsSample\/\n$ curl https:\/\/raw.githubusercontent.com\/griddb\/griddb_nosql\/master\/docs\/sample\/program\/Sample1.java > \nsrc\/main\/java\/net\/griddb\/sample\/gsSample\/Sample.java\n<\/pre>\n<p>Now you need to edit <code>src\/main\/java\/net\/griddb\/sample\/gsSample\/Sample1.java<\/code> changing <code>package gsSample;<\/code> to <code>package net.griddb.sample.gsSample;<\/code><\/p>\n<h2 id=\"build\">Build and Execute<\/h2>\n<p>Now, to run maven, simply navigate to your <code>mavenGridDBJavaConnectorTest<\/code> folder and run the following commands:<\/p>\n<pre class=\"prettyprint\">mvn clean package\nmvn package exec:java -Dexec.mainClass=\"net.griddb.sample.gsSample.Sample1\" -Dexec.args=\"239.0.0.1 31999 defaultCluster admin admin\"\n<\/pre>\n<p>If the build and execution was successful, the following should be displayed:<\/p>\n<pre>Person:  name=name02 status=false count=2 lob=[65, 66, 67, 68, 69, 70, 71, 72, 73, 74]\n<\/pre>\n<p>Once confirmed, we are finished. You should now be able to use Maven to build and run your GridDB projects.<\/p>\n<h2 id=\"conclusion\">References<\/h2>\n<ul>\n<li>The source code for GridDB can be found on the <a title=\"GridDB Repository\" href=\"https:\/\/github.com\/griddb\/griddb_nosql\">official GridDB repository.<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this post, we will go through common steps involved in configuring Maven for a project that uses the GridDB Java API. This blog assumes you have both GridDB and Maven installed correctly. If you do not yet have GridDB installed, you can refer to the beginning portion of this blog. Maven can be [&hellip;]<\/p>\n","protected":false},"author":71,"featured_media":25786,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46575","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using Maven to Develop GridDB Applications | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"Introduction In this post, we will go through common steps involved in configuring Maven for a project that uses the GridDB Java API. This blog assumes\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Maven to Develop GridDB Applications | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"Introduction In this post, we will go through common steps involved in configuring Maven for a project that uses the GridDB Java API. This blog assumes\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/\" \/>\n<meta property=\"og:site_name\" content=\"GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/griddbcommunity\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-18T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:54:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2019\/01\/blog_title_31.png\" \/>\n\t<meta property=\"og:image:width\" content=\"870\" \/>\n\t<meta property=\"og:image:height\" content=\"490\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Owen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:site\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Owen\" \/>\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:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/\"},\"author\":{\"name\":\"Owen\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\"},\"headline\":\"Using Maven to Develop GridDB Applications\",\"datePublished\":\"2018-10-18T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/\"},\"wordCount\":291,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2019\/01\/blog_title_31.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/\",\"name\":\"Using Maven to Develop GridDB Applications | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2019\/01\/blog_title_31.png\",\"datePublished\":\"2018-10-18T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:38+00:00\",\"description\":\"Introduction In this post, we will go through common steps involved in configuring Maven for a project that uses the GridDB Java API. This blog assumes\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2019\/01\/blog_title_31.png\",\"contentUrl\":\"\/wp-content\/uploads\/2019\/01\/blog_title_31.png\",\"width\":870,\"height\":490},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb.net\/en\/#website\",\"url\":\"https:\/\/griddb.net\/en\/\",\"name\":\"GridDB: Open Source Time Series Database for IoT\",\"description\":\"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL\",\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"contentUrl\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"width\":200,\"height\":83,\"caption\":\"Fixstars\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/griddbcommunity\/\",\"https:\/\/x.com\/GridDBCommunity\",\"https:\/\/www.linkedin.com\/company\/griddb-by-toshiba\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\",\"name\":\"Owen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"caption\":\"Owen\"},\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/owen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Maven to Develop GridDB Applications | GridDB: Open Source Time Series Database for IoT","description":"Introduction In this post, we will go through common steps involved in configuring Maven for a project that uses the GridDB Java API. This blog assumes","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:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/","og_locale":"en_US","og_type":"article","og_title":"Using Maven to Develop GridDB Applications | GridDB: Open Source Time Series Database for IoT","og_description":"Introduction In this post, we will go through common steps involved in configuring Maven for a project that uses the GridDB Java API. This blog assumes","og_url":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2018-10-18T07:00:00+00:00","article_modified_time":"2025-11-13T20:54:38+00:00","og_image":[{"width":870,"height":490,"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2019\/01\/blog_title_31.png","type":"image\/png"}],"author":"Owen","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"Owen","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/"},"author":{"name":"Owen","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66"},"headline":"Using Maven to Develop GridDB Applications","datePublished":"2018-10-18T07:00:00+00:00","dateModified":"2025-11-13T20:54:38+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/"},"wordCount":291,"commentCount":0,"publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2019\/01\/blog_title_31.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/","url":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/","name":"Using Maven to Develop GridDB Applications | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2019\/01\/blog_title_31.png","datePublished":"2018-10-18T07:00:00+00:00","dateModified":"2025-11-13T20:54:38+00:00","description":"Introduction In this post, we will go through common steps involved in configuring Maven for a project that uses the GridDB Java API. This blog assumes","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/using-maven-to-develop-griddb-applications\/#primaryimage","url":"\/wp-content\/uploads\/2019\/01\/blog_title_31.png","contentUrl":"\/wp-content\/uploads\/2019\/01\/blog_title_31.png","width":870,"height":490},{"@type":"WebSite","@id":"https:\/\/griddb.net\/en\/#website","url":"https:\/\/griddb.net\/en\/","name":"GridDB: Open Source Time Series Database for IoT","description":"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL","publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/griddb.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","contentUrl":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","width":200,"height":83,"caption":"Fixstars"},"image":{"@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/griddbcommunity\/","https:\/\/x.com\/GridDBCommunity","https:\/\/www.linkedin.com\/company\/griddb-by-toshiba"]},{"@type":"Person","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66","name":"Owen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","caption":"Owen"},"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/owen\/"}]}},"_links":{"self":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46575","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/users\/71"}],"replies":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/comments?post=46575"}],"version-history":[{"count":1,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46575\/revisions"}],"predecessor-version":[{"id":51265,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46575\/revisions\/51265"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media\/25786"}],"wp:attachment":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media?parent=46575"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/categories?post=46575"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/tags?post=46575"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}