

{"id":12056,"date":"2018-03-30T05:48:31","date_gmt":"2018-03-30T05:48:31","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=12056"},"modified":"2021-05-09T13:11:15","modified_gmt":"2021-05-09T07:41:15","slug":"impala-create-table-statement","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/","title":{"rendered":"Impala CREATE TABLE Statement &#8211; Advance Tutorial"},"content":{"rendered":"<p><span style=\"font-weight: 400\">In our last tutorial, we studied the Create Database and Drop Database. When it comes to creating a new table in the required database, we use several statements in <strong>Impala<\/strong>. That statement we call Impala CREATE TABLE Statement. It includes its syntax usage as well as the example to understand it well.<\/span><\/p>\n<p>So, let&#8217;s start How Impala Create Table Statement.<\/p>\n<h2><span style=\"font-weight: 400\">Introduction &#8211; Impala CREATE TABLE Statement<\/span><\/h2>\n<p><span style=\"font-weight: 400\">The simple definition, when we create a table, you optionally specify several aspects.<\/span> Like:<\/p>\n<ul>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Internal or external table.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Columns and associated data types.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">For physically partitioning the data we use the columns.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">The file format for data files.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Also, the HDFS directory where the data files are located.<\/span><\/li>\n<\/ul>\n<p><span style=\"font-weight: 400\">In order to create a new table in the required database, we use the CREATE TABLE Statement in Impala. Basically, the process of naming the table and defining its columns and each column&#8217;s data type is what we call Creating a basic table.<\/span><\/p>\n<h2><span style=\"font-weight: 400\">A Syntax of Create Table in Impala<\/span><\/h2>\n<p><span style=\"font-weight: 400\">\u00a0To create table in <a href=\"https:\/\/impala.apache.org\/\">impala <\/a><\/span><span style=\"font-weight: 400\">and specifying its columns, the general syntax is as follows:<\/span><\/p>\n<h3><span style=\"font-weight: 400\">I. Explicit column definitions<\/span><\/h3>\n<pre class=\"EnlighterJSRAW\">CREATE [EXTERNAL] TABLE [IF NOT EXISTS] [db_name.]table_name\n (col_name data_type [COMMENT 'col_comment'], ...)\n [PARTITIONED BY (col_name data_type [COMMENT 'col_comment'], ...)]\n [COMMENT 'table_comment']\n [WITH SERDEPROPERTIES ('key1'='value1', 'key2'='value2', ...)]\n [\n  [ROW FORMAT row_format] [STORED AS file_format]\n ]\n [LOCATION 'hdfs_path']\n [TBLPROPERTIES ('key1'='value1', 'key2'='value2', ...)]\n [CACHED IN 'pool_name' [WITH REPLICATION = integer] | UNCACHED]<\/pre>\n<h3><span style=\"font-weight: 400\">ii. Column definitions inferred from data file<\/span><span style=\"font-weight: 400\"><br \/>\n<\/span><\/h3>\n<pre class=\"EnlighterJSRAW\">CREATE [EXTERNAL] TABLE [IF NOT EXISTS] [db_name.]table_name\n LIKE PARQUET 'hdfs_path_of_parquet_file'\n [COMMENT 'table_comment']\n [PARTITIONED BY (col_name data_type [COMMENT 'col_comment'], ...)]\n [WITH SERDEPROPERTIES ('key1'='value1', 'key2'='value2', ...)]\n [\n  [ROW FORMAT row_format] [STORED AS file_format]\n ]\n [LOCATION 'hdfs_path']\n [TBLPROPERTIES ('key1'='value1', 'key2'='value2', ...)]\n [CACHED IN 'pool_name' [WITH REPLICATION = integer] | UNCACHED]\ndata_type:\n   primitive_type\n | array_type\n | map_type\n | struct_type<\/pre>\n<h3><span style=\"font-weight: 400\">iii. Create Table as Select<\/span><\/h3>\n<pre class=\"EnlighterJSRAW\">CREATE [EXTERNAL] TABLE [IF NOT EXISTS] db_name.]table_name\n [PARTITIONED BY (col_name[, ...])]\n [COMMENT 'table_comment']\n [WITH SERDEPROPERTIES ('key1'='value1', 'key2'='value2', ...)]\n [\n  [ROW FORMAT row_format] [STORED AS ctas_file_format]\n ]\n [LOCATION 'hdfs_path']\n [TBLPROPERTIES ('key1'='value1', 'key2'='value2', ...)]\n [CACHED IN 'pool_name' [WITH REPLICATION = integer] | UNCACHED]\nAS\n select_statement\nprimitive_type:\n   TINYINT\n | SMALLINT\n | INT\n | BIGINT\n | BOOLEAN\n | FLOAT\n | DOUBLE\n | DECIMAL\n | STRING\n | CHAR\n | VARCHAR\n | TIMESTAMP\ncomplex_type:\n   struct_type\n | array_type\n | map_type\nstruct_type: STRUCT &lt; name : primitive_or_complex_type [COMMENT 'comment_string'], ... &gt;\narray_type: ARRAY &lt; primitive_or_complex_type &gt;\nmap_type: MAP &lt; primitive_type, primitive_or_complex_type &gt;\nrow_format:\n DELIMITED [FIELDS TERMINATED BY 'char' [ESCAPED BY 'char']]\n [LINES TERMINATED BY 'char']\nfile_format:\n   PARQUET\n | TEXTFILE\n | AVRO\n | SEQUENCEFILE\n | RCFILE\nctas_file_format:\n   PARQUET\n | TEXTFILE<\/pre>\n<h3><span style=\"font-weight: 400\">iv. Statement type<\/span><\/h3>\n<p><span style=\"font-weight: 400\">Impala CREATE TABLE Statement is of DDL Type.<\/span><\/p>\n<h2><span style=\"font-weight: 400\">Example of Impala Create Table Statement<\/span><\/h2>\n<p><span style=\"font-weight: 400\">Let&#8217;s understand the Impala CREATE TABLE statement with the example. To create table statement. Here, we have created a table named EMPLOYEE in the database my_db.<\/span><span style=\"font-weight: 400\"><br \/>\n<\/span><\/p>\n<pre class=\"EnlighterJSRAW\">[quickstart.cloudera:21000] &gt; CREATE TABLE IF NOT EXISTS my_db.EMPLOYEE\n  (name STRING, age INT, contact INT );<\/pre>\n<p><span style=\"font-weight: 400\">Now, a table with the specified name will be created. Further, it displays the following output.<\/span><\/p>\n<pre class=\"EnlighterJSRAW\">Query: create table EMPLOYEE (name STRING, age INT, phone INT)\nFetched 0 row(s) in 0.48s<\/pre>\n<p>Next in Impala CREATE TABLE is it is Verification.<\/p>\n<h2><span style=\"font-weight: 400\">Verification in Impala Create Table Statements<\/span><\/h2>\n<p><span style=\"font-weight: 400\">Basically, \u00a0in Impala, the show Tables query gives a list of tables in the current database.<\/span> That implies, using the Show Tables statement, we can verify whether the table is created.<span style=\"font-weight: 400\"><br \/>\n<\/span><span style=\"font-weight: 400\"><br \/>\n<\/span><span style=\"font-weight: 400\">At first, we need to switch the context to the database in which the required table exists.<\/span><\/p>\n<pre class=\"EnlighterJSRAW\">[quickstart.cloudera:21000] &gt; use my_db;\nQuery: use my_db<\/pre>\n<p><b> <\/b><span style=\"font-weight: 400\">Further, we can observe the table named EMPLOYEE in it, \u00a0since we get the list of tables using the show tables query.<\/span><b><\/b><\/p>\n<pre class=\"EnlighterJSRAW\">[quickstart.cloudera:21000] &gt; show tables;\nQuery: show tables\n+-----------+\n| name      |\n+-----------+\n| EMPLOYEE   |\n+-----------+\nFetched 1 row(s) in 0.10s<\/pre>\n<h2><span style=\"font-weight: 400\">HDFS path in Impala<\/span><\/h2>\n<p><span style=\"font-weight: 400\">Basically, we need to specify the location where the database is to be created, to create a database in<strong> HDFS<\/strong> file system.<\/span> Like below.<span style=\"font-weight: 400\"><br \/>\n<\/span><span style=\"font-weight: 400\"><br \/>\n<\/span><span style=\"font-weight: 400\">CREATE DATABASE IF NOT EXISTS database_name LOCATION hdfs_path;<\/span><\/p>\n<h2><span style=\"font-weight: 400\">How to Create a Database using Hue Browser<\/span><\/h2>\n<p><span style=\"font-weight: 400\">Steps are:<\/span><\/p>\n<ul>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">At first, type the CREATE Table Statement in impala Query editor. Then, click on the execute button.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Afterward, gently move the cursor to the top of the drop-down menu just after executing the query. There is a refresh symbol. Further, the list of databases will be refreshed once you click on the refresh symbol. In this way, the recent changes which are done are applied to it.<\/span><\/li>\n<\/ul>\n<p><strong>I. Verification<\/strong><\/p>\n<ul>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">In order to verify, first Click on the drop down under the heading DATABASE on the left-hand side of the editor. A list of databases will get open.\u00a0Then Select the database my_db.<\/span><\/li>\n<li style=\"font-weight: 400\"><span style=\"font-weight: 400\">Further, you can see a list of tables, on selecting the database my_db.<\/span> There you will find the newly created table EMPLOYEE.<\/li>\n<\/ul>\n<p>So, this is all about Impala CREATE TABLE Statement. Hope you like our explanation.<\/p>\n<h2><span style=\"font-weight: 400\">Conclusion &#8211; Impala Create Table Statements<\/span><\/h2>\n<p><span style=\"font-weight: 400\">As a result, we have seen the whole concept of Impala CREATE TABLE Statement. Still, if any query occurs feel free to ask in the comment section.<\/span><span hidden class=\"__iawmlf-post-loop-links\" data-iawmlf-links=\"[{&quot;id&quot;:2003,&quot;href&quot;:&quot;https:\\\/\\\/impala.apache.org&quot;,&quot;archived_href&quot;:&quot;&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[],&quot;broken&quot;:false,&quot;last_checked&quot;:null,&quot;process&quot;:&quot;done&quot;}]\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In our last tutorial, we studied the Create Database and Drop Database. When it comes to creating a new table in the required database, we use several statements in Impala. That statement we call&#46;&#46;&#46;<\/p>\n","protected":false},"author":6,"featured_media":19083,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27],"tags":[3090,3094,4238,5587,6499,16651],"class_list":["post-12056","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-impala","tag-create-table-example-in-impala","tag-create-table-statement-in-impala","tag-example","tag-hdfs-path","tag-impala-create-table-statement","tag-syntax"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Impala CREATE TABLE Statement - Advance Tutorial - DataFlair<\/title>\n<meta name=\"description\" content=\"How to use Impala CREATE TABLE Statement, Syntax &amp; example of Create Table in Impala, Create Table as Select, How to Create a Database using Hue Browser\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Impala CREATE TABLE Statement - Advance Tutorial - DataFlair\" \/>\n<meta property=\"og:description\" content=\"How to use Impala CREATE TABLE Statement, Syntax &amp; example of Create Table in Impala, Create Table as Select, How to Create a Database using Hue Browser\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-30T05:48:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-09T07:41:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/06\/Impala-CREATE-TABLE-Statement-01.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Impala CREATE TABLE Statement - Advance Tutorial - DataFlair","description":"How to use Impala CREATE TABLE Statement, Syntax & example of Create Table in Impala, Create Table as Select, How to Create a Database using Hue Browser","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:\/\/data-flair.training\/blogs\/impala-create-table-statement\/","og_locale":"en_US","og_type":"article","og_title":"Impala CREATE TABLE Statement - Advance Tutorial - DataFlair","og_description":"How to use Impala CREATE TABLE Statement, Syntax & example of Create Table in Impala, Create Table as Select, How to Create a Database using Hue Browser","og_url":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2018-03-30T05:48:31+00:00","article_modified_time":"2021-05-09T07:41:15+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/06\/Impala-CREATE-TABLE-Statement-01.jpg","type":"image\/jpeg"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89"},"headline":"Impala CREATE TABLE Statement &#8211; Advance Tutorial","datePublished":"2018-03-30T05:48:31+00:00","dateModified":"2021-05-09T07:41:15+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/"},"wordCount":571,"commentCount":0,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/06\/Impala-CREATE-TABLE-Statement-01.jpg","keywords":["Create Table example in impala","CREATE TABLE Statement in Impala","example","HDFS path","Impala CREATE TABLE Statement","Syntax"],"articleSection":["Impala Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/","url":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/","name":"Impala CREATE TABLE Statement - Advance Tutorial - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/06\/Impala-CREATE-TABLE-Statement-01.jpg","datePublished":"2018-03-30T05:48:31+00:00","dateModified":"2021-05-09T07:41:15+00:00","description":"How to use Impala CREATE TABLE Statement, Syntax & example of Create Table in Impala, Create Table as Select, How to Create a Database using Hue Browser","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/06\/Impala-CREATE-TABLE-Statement-01.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/06\/Impala-CREATE-TABLE-Statement-01.jpg","width":1200,"height":628,"caption":"Impala CREATE TABLE Statement - Advance Tutorial"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/impala-create-table-statement\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Impala Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/impala\/"},{"@type":"ListItem","position":3,"name":"Impala CREATE TABLE Statement &#8211; Advance Tutorial"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"The DataFlair Team provides industry-driven content on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our expert educators focus on delivering value-packed, easy-to-follow resources for tech enthusiasts and professionals.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam2\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/12056","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=12056"}],"version-history":[{"count":1,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/12056\/revisions"}],"predecessor-version":[{"id":94052,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/12056\/revisions\/94052"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/19083"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=12056"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=12056"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=12056"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}