{"id":52080,"date":"2025-01-24T00:00:00","date_gmt":"2025-01-24T08:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/griddb-v5-7-web-api-changes\/"},"modified":"2025-01-24T00:00:00","modified_gmt":"2025-01-24T08:00:00","slug":"griddb-v5-7-web-api-changes","status":"publish","type":"post","link":"https:\/\/www.griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/","title":{"rendered":"GridDB v5.7 Web API Changes"},"content":{"rendered":"<p>GridDB v5.7.0 has released and we would like to go over some of the new features. You can download the new release directly from <a href=\"\">GitHub<\/a> and from the <a href=\"\/en\/downloads\">Downloads<\/a> page. In this article, we specifically want to take a closer look at two of the new features: WebAPI changes and SQL Working Memory limit.<\/p>\n<h2>GridDB Web API Changes in v5.7.0<\/h2>\n<p>The GridDB WebAPI allows for you to interact with your GridDB server via HTTP Requests. The major changes in this release are expanded capability of the SQL functionality, as well as a new way to install the package itself. Packaged within this new release are SQL commands which were previously unavailable, including DDL, DML, and DCL commands. On the github page, you will also find <code>.deb<\/code> and <code>.rpm<\/code> files for installation, which will also add installing the web api as a service.<\/p>\n<p>The following sections&#8217; information can be found on the project&#8217;s github page: <a href=\"https:\/\/github.com\/griddb\/webapi\/blob\/master\/GridDB_Web_API_Reference.md\">https:\/\/github.com\/griddb\/webapi\/blob\/master\/GridDB_Web_API_Reference.md<\/a><\/p>\n<h3>Installation Changes<\/h3>\n<p>As explained above, you can now install the GridDB Web API as a package, meaning it will auto-populate all necessary directories for you and also create a symlink so that you can launch the service using <code>systemctl<\/code>, similar to how the GridDB server operates. To do so, grab the <code>.deb<\/code> file from <a href=\"https:\/\/github.com\/griddb\/webapi\/releases\/tag\/5.7.0\">https:\/\/github.com\/griddb\/webapi\/releases\/tag\/5.7.0<\/a> and run:<\/p>\n<p><code>$ sudo dpkg -i https:\/\/github.com\/griddb\/webapi\/releases\/download\/5.7.0\/griddb-ce-webapi_5.7.0_amd64.deb<\/code><\/p>\n<p>Once installed, you can make the changes you deem necessary in the following directory: <code>\/var\/lib\/gridstore\/webapi\/conf<\/code>. And then to start: <code>$ sudo systemctl start griddb-webapi.service<\/code><\/p>\n<h3>SQL DDL (Data Definition Language)<\/h3>\n<p>To me, the standout feature for the Web API is the inclusion of SQL DDL Commands. With this, we can now create tables using the Web API with the familar SQL syntax and are no longer required to use the TQL API for creating our tables. And though the previous methods worked just fine before, the benefits of this addition are two-fold: 1, SQL is a widely-known query language and therefore easier to work with, and 2, TQL commands did not allow for manipulating or creating partitioned tables\/containers.<\/p>\n<p>Now let&#8217;s take a look at creating a table using the new SQL DDL Command. The URL path is as follows: <code>\/:cluster\/dbs\/:database\/sql\/ddl<\/code>. Here&#8217;s a working example:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">curl --location 'http:\/\/192.168.50.206:8082\/griddb\/v2\/myCluster\/dbs\/public\/sql\/ddl' \n--header 'Content-Type: application\/json' \n--header 'Authorization: \u2022\u2022\u2022\u2022\u2022\u2022' \n--data '[\n {\"stmt\" : \"CREATE TABLE IF NOT EXISTS pyIntPart2 (date TIMESTAMP NOT NULL PRIMARY KEY, value STRING) WITH (expiration_type='''PARTITION''',expiration_time=10,expiration_time_unit='''DAY''') PARTITION BY RANGE (date) EVERY (5, DAY);\"},\n {\"stmt\" : \"ALTER TABLE pyIntPart2 ADD temp STRING\"}\n]'<\/code><\/pre>\n<\/div>\n<p>Here we are making two statements, one to create a partitioned table with expiry rules (you can read about that here: <a href=\"https:\/\/griddb.net\/en\/blog\/griddb-partitioning-and-expiry\/\">https:\/\/griddb.net\/en\/blog\/griddb-partitioning-and-expiry\/<\/a>, and another to alter that same table and add a new column. Again, this was not possible before because of the nature of partitioned tabled.<\/p>\n<h3>SQL DML (Data Manipulation Language)<\/h3>\n<p>With DML commands, we can run SELECT, INSERT, UPDATE, etc commands on our containers. This functionality was partly there prior to the v5.7.0 release, though it was a lot more limited and is no longer recommended to be used. To conduct a DML request, the path is similar to the one above: <code>\/:cluster\/dbs\/:database\/sql\/dml\/query<\/code>. With this, you can run a SELECT statement to run a lookup of some data from your container. For example<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">curl --location 'http:\/\/192.168.50.206:8082\/griddb\/v2\/myCluster\/dbs\/public\/sql\/dml\/query' \n--header 'Content-Type: application\/json' \n--header 'Authorization: \u2022\u2022\u2022\u2022\u2022\u2022' \n--data '[\n  {\"stmt\" : \"select AVG(total_points_per_game) from Top_NBA_Playoff_Scorers\"}\n]\n'<\/code><\/pre>\n<\/div>\n<p>Again, if we wanted to query data from a partitioned table using the TQL method, the command will fail:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">curl --location 'http:\/\/192.168.50.206:8082\/griddb\/v2\/myCluster\/dbs\/public\/tql' \n--header 'Content-Type: application\/json' \n--header 'Authorization: \u2022\u2022\u2022\u2022\u2022\u2022' \n--data '[\n  {\"name\" : \"pyIntPart2\", \"stmt\" : \"select *\", \"columns\" : null}\n]'<\/code><\/pre>\n<\/div>\n<h4>DML Update<\/h4>\n<p>We can also update rows by using the same rowkey or we can add new ones by using a fresh key. For example:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">curl --location 'http:\/\/192.168.50.206:8082\/griddb\/v2\/myCluster\/dbs\/public\/sql\/dml\/update' \n--header 'Content-Type: application\/json' \n--header 'Authorization: \u2022\u2022\u2022\u2022\u2022\u2022' \n--data '[\n  {\"stmt\" : \"INSERT INTO pyIntPart2(date, value, temp) VALUES (NOW(), '''blog_test''', '''cold''')\"}\n]\n'<\/code><\/pre>\n<\/div>\n<p>Again, the nice thing about using SQL here instead of the old TQL is that we can use the special GridDB Time Series SQL commands such as <code>NOW()<\/code>. You can read more about those commands in the docs: <a href=\"https:\/\/docs.griddb.net\/sqlreference\/sql-commands-supported\/#time-functions\">https:\/\/docs.griddb.net\/sqlreference\/sql-commands-supported\/#time-functions<\/a>.<\/p>\n<p>If we tried to use the <code>NOW()<\/code> command with the TQL version of an insert, it fails:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">curl --location --request PUT 'http:\/\/192.168.50.206:8082\/griddb\/v2\/myCluster\/dbs\/public\/containers\/pyIntPart2\/rows' \n--header 'Content-Type: application\/json' \n--header 'Authorization: \u2022\u2022\u2022\u2022\u2022\u2022' \n--data '[\n [NOW(), \"failure\",\"hot\"]\n]'<\/code><\/pre>\n<\/div>\n<p>This command will fail.<\/p>\n<h3>SQL DCL (Data Control Language)<\/h3>\n<p>The SQL Data Control Language is mostly concerned with rights\/permissions for your database. This one isn&#8217;t as exciting but it can be useful if managing many databases or users. For eexample, if you create a new database and a new user, you can grant that user access to that DB with the Web API.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">curl --location 'http:\/\/192.168.50.206:8082\/griddb\/v2\/myCluster\/dbs\/public\/sql\/dcl' \n--header 'Content-Type: application\/json' \n--header 'Authorization: \u2022\u2022\u2022\u2022\u2022\u2022' \n--data '[\n {\"stmt\" : \"REVOKE all on testing1 from israel\"},\n {\"stmt\" : \"GRANT all on testing1 to israel\"}\n]'<\/code><\/pre>\n<\/div>\n<p>And you can verify this by using the GridDB CLI tool<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-sh\">gs[public]> showuser israel\nName     : israel\nType     : General User\nGrantedDB: public\n           testing1         ALL<\/code><\/pre>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>GridDB v5.7.0 has released and we would like to go over some of the new features. You can download the new release directly from GitHub and from the Downloads page. In this article, we specifically want to take a closer look at two of the new features: WebAPI changes and SQL Working Memory limit. GridDB [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":52081,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-52080","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>GridDB v5.7 Web API Changes | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"GridDB v5.7.0 has released and we would like to go over some of the new features. You can download the new release directly from GitHub and from the\" \/>\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\/griddb-v5-7-web-api-changes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GridDB v5.7 Web API Changes | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"GridDB v5.7.0 has released and we would like to go over some of the new features. You can download the new release directly from GitHub and from the\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/\" \/>\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=\"2025-01-24T08:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.griddb.net\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1160\" \/>\n\t<meta property=\"og:image:height\" content=\"653\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Israel\" \/>\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=\"Israel\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/\"},\"author\":{\"name\":\"Israel\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740\"},\"headline\":\"GridDB v5.7 Web API Changes\",\"datePublished\":\"2025-01-24T08:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/\"},\"wordCount\":677,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/\",\"name\":\"GridDB v5.7 Web API Changes | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png\",\"datePublished\":\"2025-01-24T08:00:00+00:00\",\"description\":\"GridDB v5.7.0 has released and we would like to go over some of the new features. You can download the new release directly from GitHub and from the\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png\",\"contentUrl\":\"\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png\",\"width\":1160,\"height\":653},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website\",\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.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-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.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-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.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-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740\",\"name\":\"Israel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"caption\":\"Israel\"},\"url\":\"https:\/\/www.griddb.net\/en\/author\/israel\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"GridDB v5.7 Web API Changes | GridDB: Open Source Time Series Database for IoT","description":"GridDB v5.7.0 has released and we would like to go over some of the new features. You can download the new release directly from GitHub and from the","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\/griddb-v5-7-web-api-changes\/","og_locale":"en_US","og_type":"article","og_title":"GridDB v5.7 Web API Changes | GridDB: Open Source Time Series Database for IoT","og_description":"GridDB v5.7.0 has released and we would like to go over some of the new features. You can download the new release directly from GitHub and from the","og_url":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2025-01-24T08:00:00+00:00","og_image":[{"width":1160,"height":653,"url":"https:\/\/www.griddb.net\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png","type":"image\/png"}],"author":"Israel","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"Israel","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/"},"author":{"name":"Israel","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740"},"headline":"GridDB v5.7 Web API Changes","datePublished":"2025-01-24T08:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/"},"wordCount":677,"commentCount":0,"publisher":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/","url":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/","name":"GridDB v5.7 Web API Changes | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png","datePublished":"2025-01-24T08:00:00+00:00","description":"GridDB v5.7.0 has released and we would like to go over some of the new features. You can download the new release directly from GitHub and from the","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/griddb-v5-7-web-api-changes\/#primaryimage","url":"\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png","contentUrl":"\/wp-content\/uploads\/2025\/12\/GridDB-QUickstart-pink.png","width":1160,"height":653},{"@type":"WebSite","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#website","url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.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-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.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-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.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-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740","name":"Israel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","caption":"Israel"},"url":"https:\/\/www.griddb.net\/en\/author\/israel\/"}]}},"_links":{"self":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/52080","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/comments?post=52080"}],"version-history":[{"count":0,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/52080\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/media\/52081"}],"wp:attachment":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/media?parent=52080"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/categories?post=52080"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/tags?post=52080"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}